This commit is contained in:
liu
2026-08-06 16:37:04 +08:00
parent c613b520a9
commit 39b789154c
47 changed files with 3377 additions and 265 deletions
+17 -2
View File
@@ -1,12 +1,27 @@
export default defineAppConfig({
pages: [
'pages/index/index',
'pages/product/index',
'pages/cart/index',
'pages/profile/index',
'pages/message/index',
'pages/login/index',
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'WeChat',
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,
})