56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
|
|
|
|
export default defineUniPages({
|
|
globalStyle: {
|
|
navigationStyle: 'default',
|
|
navigationBarTitleText: '',
|
|
navigationBarBackgroundColor: '#f8f8f8',
|
|
navigationBarTextStyle: 'black',
|
|
backgroundColor: '#FFFFFF',
|
|
},
|
|
easycom: {
|
|
autoscan: true,
|
|
custom: {
|
|
'^wd-(.*)': 'wot-design-uni/components/wd-$1/wd-$1.vue',
|
|
'^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)':
|
|
'z-paging/components/z-paging$1/z-paging$1.vue',
|
|
},
|
|
},
|
|
tabBar: {
|
|
color: '#999999',
|
|
selectedColor: '#BE805A',
|
|
backgroundColor: '#ffffff',
|
|
borderStyle: '#E7E7E7',
|
|
height: '56px',
|
|
fontSize: '10px',
|
|
iconWidth: '20px',
|
|
spacing: '3px',
|
|
list: [
|
|
{
|
|
iconPath: 'static/tabbar/home.png',
|
|
selectedIconPath: 'static/tabbar/homeHL.png',
|
|
pagePath: 'pages/index/index',
|
|
text: '首页',
|
|
},
|
|
{
|
|
iconPath: 'static/tabbar/house.png',
|
|
selectedIconPath: 'static/tabbar/houseHL.png',
|
|
pagePath: 'pages/invite/index',
|
|
text: '邀请好友',
|
|
},
|
|
{
|
|
iconPath: 'static/tabbar/invest.png',
|
|
selectedIconPath: 'static/tabbar/investHL.png',
|
|
pagePath: 'pages/invest/index',
|
|
text: '房产集团',
|
|
},
|
|
{
|
|
iconPath: 'static/tabbar/personal.png',
|
|
selectedIconPath: 'static/tabbar/personalHL.png',
|
|
pagePath: 'pages/my/index',
|
|
text: '我的',
|
|
},
|
|
],
|
|
},
|
|
})
|