This commit is contained in:
2023-08-13 14:45:19 +08:00
commit 433a4d8f3d
31 changed files with 15340 additions and 0 deletions

34
src/app.config.ts Normal file
View File

@@ -0,0 +1,34 @@
export default defineAppConfig({
pages: [
'pages/index/index',
'pages/category/index',
'pages/cart/index',
'pages/user/index'
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'black'
},
tabBar: {
color: "#666666",
selectedColor: "#ff0000",
backgroundColor: "#ffffff",
borderStyle: 'white',
list: [{
pagePath: 'pages/index/index',
text: '首页',
}, {
pagePath: 'pages/category/index',
text: '分类',
}, {
pagePath: 'pages/cart/index',
text: '购物车',
}, {
pagePath: 'pages/user/index',
text: '我的',
}]
}
})