mall-app-t/pages.json

92 lines
2.3 KiB
JSON
Raw Normal View History

2024-05-22 15:42:13 +08:00
{
"easycom": {
"autoscan": true,
"custom": {
"^p-(.*)": "@/peach/components/p-$1/p-$1.vue",
"^pb-(.*)": "@/peach/ui/pb-$1/pb-$1.vue"
}
},
"pages": [
//pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
2024-05-27 18:30:44 +08:00
{
"path": "pages/order/list",
"style": {
"navigationBarTitleText": "订单"
},
"meta": {
"auth": true
}
},
2024-05-24 17:24:44 +08:00
{
"path": "pages/index/my",
"style": {
"navigationBarTitleText": "我的"
},
"meta": {
"auth": false
}
},
2024-05-22 18:05:56 +08:00
{
2024-05-23 18:04:40 +08:00
"path": "pages/index/index",
2024-05-22 18:05:56 +08:00
"style": {
2024-05-23 18:04:40 +08:00
"navigationBarTitleText": "uni-app"
2024-05-22 18:05:56 +08:00
},
"meta": {
"auth": false
}
},
2024-05-22 15:42:13 +08:00
{
2024-05-23 18:04:40 +08:00
"path": "pages/index/login",
2024-05-22 15:42:13 +08:00
"style": {
2024-05-23 18:04:40 +08:00
"navigationBarTitleText": "登录"
2024-05-22 15:42:13 +08:00
},
"meta": {
"auth": false
}
},
{
2024-05-24 17:24:44 +08:00
"path": "pages/index/product",
2024-05-22 15:42:13 +08:00
"style": {
2024-05-24 17:24:44 +08:00
"navigationBarTitleText": "产品"
2024-05-22 15:42:13 +08:00
},
"meta": {
"auth": false
}
},
{
"path": "pages/index/icons",
"style": {
"navigationBarTitleText": "uni-app"
},
"meta": {
"auth": false
}
}
],
2024-05-24 17:24:44 +08:00
"tabBar": {
"list": [
{
"pagePath": "pages/index/index"
},
{
"pagePath": "pages/index/product"
},
{
2024-05-27 18:30:44 +08:00
"pagePath": "pages/order/list"
2024-05-24 17:24:44 +08:00
},
{
"pagePath": "pages/index/my"
}
]
},
2024-05-22 15:42:13 +08:00
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"navigationStyle": "custom"
},
"uniIdRouter": {}
}