This commit is contained in:
jeremygan2021
2026-02-11 01:31:21 +08:00
parent 61afc52ac2
commit 2d090cd0f4
97 changed files with 3661 additions and 4 deletions

View File

@@ -0,0 +1,66 @@
export default defineAppConfig({
pages: [
'pages/index/index',
'pages/services/index',
'pages/services/detail',
'pages/ar/index',
'pages/ar/detail',
'pages/goods/detail',
'pages/cart/cart',
'pages/order/checkout',
'pages/order/payment',
'pages/order/list',
'pages/user/index'
],
subPackages: [
{
root: 'subpackages/distributor',
pages: [
'index',
'register',
'invite',
'withdraw'
]
}
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'Quant Speed Market',
navigationBarTextStyle: 'black'
},
tabBar: {
color: "#999",
selectedColor: "#333",
backgroundColor: "#fff",
list: [
{
pagePath: "pages/index/index",
text: "首页",
iconPath: "./assets/home.png",
selectedIconPath: "./assets/home_active.png"
},
{
pagePath: "pages/services/index",
text: "AI服务",
iconPath: "./assets/cart.png", // Using cart icon as placeholder if no other icon available
selectedIconPath: "./assets/cart_active.png"
},
{
pagePath: "pages/ar/index",
text: "AR体验",
iconPath: "./assets/cart.png", // Placeholder
selectedIconPath: "./assets/cart_active.png"
},
{
pagePath: "pages/user/index",
text: "我的",
iconPath: "./assets/user.png",
selectedIconPath: "./assets/user_active.png"
}
]
},
requiredPrivateInfos: [
"chooseAddress"
]
})