41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/index/index',
|
|
'pages/product/index',
|
|
'pages/product-detail/index',
|
|
'pages/cart/index',
|
|
'pages/message/index',
|
|
'pages/profile/index',
|
|
'pages/order-list/index',
|
|
'pages/report/index',
|
|
'pages/bill/index',
|
|
'pages/bill-detail/index',
|
|
'pages/payment/index',
|
|
'pages/payment-records/index',
|
|
'pages/payment-detail/index',
|
|
'pages/settings/index',
|
|
'pages/login/index',
|
|
'pages/agreement/index',
|
|
'pages/privacy/index',
|
|
'pages/change-password/index',
|
|
'pages/store-info/index',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#ffffff',
|
|
navigationBarTitleText: '订货采购',
|
|
navigationBarTextStyle: 'black',
|
|
},
|
|
tabBar: {
|
|
custom: true,
|
|
list: [
|
|
{ pagePath: 'pages/index/index', text: '首页' },
|
|
{ pagePath: 'pages/product/index', text: '商品' },
|
|
{ pagePath: 'pages/cart/index', text: '购物车' },
|
|
{ pagePath: 'pages/message/index', text: '消息' },
|
|
{ pagePath: 'pages/profile/index', text: '我的' },
|
|
],
|
|
},
|
|
animation: false,
|
|
})
|