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:06:58 +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: {
|
2024-03-25 21:01:26 +08:00
|
|
|
'^wd-(.*)': 'wot-design-uni/components/wd-$1/wd-$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:45:37 +08:00
|
|
|
pagePath: 'pages/index/i18n',
|
|
|
|
text: '多语言',
|
2024-02-04 16:00:27 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2024-01-04 09:53:17 +08:00
|
|
|
})
|