89 lines
2.8 KiB
TypeScript
89 lines
2.8 KiB
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/home/index',
|
|
'pages/stores/index',
|
|
'pages/benefit/index',
|
|
'pages/mine/index',
|
|
],
|
|
subPackages: [
|
|
{ root: 'pages/product-detail', pages: ['index'] },
|
|
{ root: 'pages/store-detail', pages: ['index'] },
|
|
{ root: 'pages/store-package-detail', pages: ['index'] },
|
|
{ root: 'pages/order-confirm', pages: ['index'] },
|
|
{ root: 'pages/order-confirm-pickup', pages: ['index'] },
|
|
{ root: 'pages/pay', pages: ['index'] },
|
|
{ root: 'pages/orders', pages: ['index'] },
|
|
{ root: 'pages/order-detail', pages: ['index'] },
|
|
{ root: 'pages/order-logistics', pages: ['index'] },
|
|
{ root: 'pages/pickup-receive', pages: ['index'] },
|
|
{ root: 'pages/addresses', pages: ['index'] },
|
|
{ root: 'pages/address-edit', pages: ['index'] },
|
|
{ root: 'pages/customer-service', pages: ['index'] },
|
|
{ root: 'pages/benefit-detail', pages: ['index'] },
|
|
{ root: 'pages/redeem', pages: ['index'] },
|
|
{ root: 'pages/redeem-code', pages: ['index'] },
|
|
{ root: 'pages/redeem-success', pages: ['index'] },
|
|
{ root: 'pages/login', pages: ['index'] },
|
|
{ root: 'pages/user-agreement', pages: ['index'] },
|
|
{ root: 'pages/privacy-policy', pages: ['index'] },
|
|
{ root: 'pages/invoice-titles', pages: ['index'] },
|
|
{ root: 'pages/invoice-apply', pages: ['index'] },
|
|
],
|
|
preloadRule: {
|
|
'pages/home/index': {
|
|
network: 'all',
|
|
packages: ['pages/product-detail', 'pages/login'],
|
|
},
|
|
'pages/mine/index': {
|
|
network: 'all',
|
|
packages: ['pages/orders', 'pages/login'],
|
|
},
|
|
},
|
|
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',
|
|
},
|
|
],
|
|
},
|
|
});
|