mi
This commit is contained in:
66
miniprogram/src/app.config.ts
Normal file
66
miniprogram/src/app.config.ts
Normal 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"
|
||||
]
|
||||
})
|
||||
Reference in New Issue
Block a user