首次提交

This commit is contained in:
2025-04-13 19:40:44 +08:00
commit eec6aef7d7
440 changed files with 44422 additions and 0 deletions

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

@@ -0,0 +1,99 @@
export default defineAppConfig({
pages: [
'pages/index/index',
'pages/order/order',
'pages/kefu/kefu',
'pages/user/user'
],
"subpackages": [
{
"root": "passport",
"pages": [
"login",
"register",
"forget",
"setting",
"agreement"
]
},
{
"root": "cms",
"pages": [
"about",
"article",
"detail",
"help"
]
},
{
"root": "user",
"pages": [
"company/company",
"profile/profile",
"setting/setting"
]
},
{
"root": "website",
"pages": [
"modify"
]
}
// {
// "root": "shop",
// "pages": [
// "bm",
// "bm/detail",
// "item",
// "pdf",
// "flash",
// "bm-log/bm-log",
// 'bm-cert/bm-cert',
// "pay/pay",
// "pay/detail",
// 'pay-log/pay-log',
// 'pay-record/pay-record',
// 'pay-cert/pay-cert',
// 'cert-query/cert-query'
// ]
// }
],
window: {
backgroundTextStyle: 'dark',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'black'
},
tabBar: {
custom: false,
color: "#8a8a8a",
selectedColor: "#9a23d4",
backgroundColor: "#ffffff",
list: [
{
pagePath: "pages/index/index",
iconPath: "assets/tabbar/home.png",
selectedIconPath: "assets/tabbar/home-active.png",
text: "寄件",
},
{
pagePath: "pages/order/order",
iconPath: "assets/tabbar/order.png",
selectedIconPath: "assets/tabbar/order-active.png",
text: "查件",
},
{
pagePath: "pages/kefu/kefu",
iconPath: "assets/tabbar/kefu.png",
selectedIconPath: "assets/tabbar/kefu-active.png",
text: "客服",
},
{
pagePath: "pages/user/user",
iconPath: "assets/tabbar/user.png",
selectedIconPath: "assets/tabbar/user-active.png",
text: "我的",
},
],
}
})