aircraft-pilot/pages.json

127 lines
2.7 KiB
JSON
Raw Permalink Normal View History

2025-07-02 14:58:38 +08:00
{
"easycom": {
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "aircraft/star/index",
//公共导航
"style": {
2025-07-14 18:41:30 +08:00
//导航栏标题文字内容
"navigationBarTitleText": "",
//是否开启下拉刷新
"enablePullDownRefresh": true,
"navigationStyle": "custom",
"onReachBottomDistance": 50,
"app-plus": {
"titleNView": true
}
2025-07-02 14:58:38 +08:00
}
},
{
"path": "uview-ui/components/u-avatar-cropper/u-avatar-cropper",
"style": {
"navigationBarTitleText": "头像裁剪",
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#fff"
}
}
2025-07-14 18:41:30 +08:00
],
"subPackages": [{
2025-07-02 14:58:38 +08:00
"root": "aircraft/index",
2025-07-14 18:41:30 +08:00
"pages": [{
2025-07-02 14:58:38 +08:00
"path": "rich-detail",
"style": {
"navigationBarTitleText": "协议内容"
}
},
{
"path": "webview"
}
]
},
{
2025-07-14 18:41:30 +08:00
"root": "aircraft/server",
"pages": [{
"path": "index/index",
2025-07-02 14:58:38 +08:00
"style": {
2025-07-23 00:15:17 +08:00
"navigationBarTitleText": "飞行运载系统"
// "enablePullDownRefresh": true
2025-07-02 14:58:38 +08:00
}
2025-07-14 18:41:30 +08:00
},
2025-08-04 10:36:35 +08:00
{
"path": "index/agreement",
"style": {
"navigationBarTitleText": "协议",
"navigationStyle": "default"
}
},
2025-07-14 18:41:30 +08:00
{
"path": "my/child_pages/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "order/detail",
"style": {
"navigationBarTitleText": "订单详情"
}
},
{
"path": "order/add",
"style": {
"navigationBarTitleText": "新增订单"
}
},
2025-08-06 16:29:04 +08:00
{
"path": "route/detail",
"style": {
"navigationBarTitleText": "路线详情"
}
},
2025-07-14 18:41:30 +08:00
{
"path": "my/child_pages/history",
"style": {
"navigationBarTitleText": "历史订单"
}
},
{
"path": "my/child_pages/reset-password",
"style": {
"navigationBarTitleText": "修改密码",
"navigationStyle": "default"
}
},
2025-07-14 18:41:30 +08:00
{
"path": "my/child_pages/setting",
"style": {
"navigationBarTitleText": "个人信息",
"navigationStyle": "default"
2025-07-14 18:41:30 +08:00
}
},
{
"path" : "equipment/equipmentDetail",
"style" :
{
"navigationBarTitleText" : "设备详情"
}
2025-07-14 18:41:30 +08:00
}]
2025-07-02 14:58:38 +08:00
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#F8F8F8",
"navigationStyle": "custom"
},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数在页面的onLoad函数里面得到
}]
}
2025-07-14 18:41:30 +08:00
}