2024-01-04 09:53:17 +08:00
|
|
|
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
|
|
|
|
|
|
|
|
export default defineUniPages({
|
|
|
|
globalStyle: {
|
2024-01-04 10:42:11 +08:00
|
|
|
navigationStyle: 'default',
|
2024-03-03 17:07:54 +08:00
|
|
|
navigationBarTitleText: 'unibest',
|
2024-01-04 10:42:11 +08:00
|
|
|
navigationBarBackgroundColor: '#f8f8f8',
|
|
|
|
navigationBarTextStyle: 'black',
|
2024-01-05 10:57:20 +08:00
|
|
|
backgroundColor: '#FFFFFF',
|
2024-01-04 09:53:17 +08:00
|
|
|
},
|
|
|
|
easycom: {
|
|
|
|
autoscan: true,
|
|
|
|
custom: {
|
|
|
|
'^uni-(.*)': '@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue',
|
2024-01-30 17:37:18 +08:00
|
|
|
'^uv-(.*)': '@climblee/uv-ui/components/uv-$1/uv-$1.vue',
|
2024-01-04 09:53:17 +08:00
|
|
|
},
|
|
|
|
},
|
2024-02-04 16:00:27 +08:00
|
|
|
tabBar: {
|
|
|
|
color: '#999999',
|
|
|
|
selectedColor: '#018d71',
|
|
|
|
backgroundColor: '#F8F8F8',
|
|
|
|
borderStyle: 'black',
|
|
|
|
height: '50px',
|
|
|
|
fontSize: '10px',
|
|
|
|
iconWidth: '24px',
|
|
|
|
spacing: '3px',
|
|
|
|
list: [
|
|
|
|
{
|
|
|
|
iconPath: 'static/tabbar/home.png',
|
|
|
|
selectedIconPath: 'static/tabbar/homeHL.png',
|
|
|
|
pagePath: 'pages/index/index',
|
|
|
|
text: '首页',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
iconPath: 'static/tabbar/example.png',
|
|
|
|
selectedIconPath: 'static/tabbar/exampleHL.png',
|
2024-03-01 17:32:03 +08:00
|
|
|
pagePath: 'pages/index/about',
|
|
|
|
text: '关于',
|
2024-02-04 16:00:27 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2024-01-04 09:53:17 +08:00
|
|
|
})
|