71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/home/index',
|
|
'pages/stores/index',
|
|
'pages/benefit/index',
|
|
'pages/mine/index',
|
|
'pages/product-detail/index',
|
|
'pages/store-detail/index',
|
|
'pages/order-confirm/index',
|
|
'pages/pay/index',
|
|
'pages/orders/index',
|
|
'pages/order-detail/index',
|
|
'pages/addresses/index',
|
|
'pages/address-edit/index',
|
|
'pages/customer-service/index',
|
|
'pages/benefit-detail/index',
|
|
'pages/redeem/index',
|
|
'pages/redeem-code/index',
|
|
'pages/redeem-success/index',
|
|
'pages/login/index',
|
|
'pages/user-agreement/index',
|
|
'pages/privacy-policy/index',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#FAF9F7',
|
|
navigationBarTitleText: '杜康好客',
|
|
navigationBarTextStyle: 'black',
|
|
backgroundColor: '#FAF9F7',
|
|
},
|
|
permission: {
|
|
'scope.userLocation': {
|
|
desc: '用于展示您所在城市的商品与门店',
|
|
},
|
|
},
|
|
requiredPrivateInfos: ['getLocation'],
|
|
tabBar: {
|
|
custom: false,
|
|
color: '#999999',
|
|
selectedColor: '#A61D24',
|
|
backgroundColor: '#FFFFFF',
|
|
borderStyle: 'black',
|
|
list: [
|
|
{
|
|
pagePath: 'pages/home/index',
|
|
text: '首页',
|
|
iconPath: 'assets/tabbar/home.png',
|
|
selectedIconPath: 'assets/tabbar/home-active.png',
|
|
},
|
|
{
|
|
pagePath: 'pages/stores/index',
|
|
text: '门店',
|
|
iconPath: 'assets/tabbar/store.png',
|
|
selectedIconPath: 'assets/tabbar/store-active.png',
|
|
},
|
|
{
|
|
pagePath: 'pages/benefit/index',
|
|
text: '好客权益',
|
|
iconPath: 'assets/tabbar/benefit.png',
|
|
selectedIconPath: 'assets/tabbar/benefit-active.png',
|
|
},
|
|
{
|
|
pagePath: 'pages/mine/index',
|
|
text: '我的',
|
|
iconPath: 'assets/tabbar/mine.png',
|
|
selectedIconPath: 'assets/tabbar/mine-active.png',
|
|
},
|
|
],
|
|
},
|
|
});
|