staff/pages.json

124 lines
2.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/index",
"style": {
"enablePullDownRefresh": false,
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"navigationBarTitleText": "登录页"
}
},
{
"path": "pages/index/index",
"style": {
"enablePullDownRefresh": true,
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/message/index",
"style": {
"enablePullDownRefresh": true,
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"navigationBarTitleText": "消息页"
}
},
{
"path": "pages/mine/index",
"style": {
"enablePullDownRefresh": false,
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"navigationBarTitleText": "我的"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"borderStyle": "black",
"backgroundColor": "#fff",
"color": "#989898",
"selectedColor": "#37A5FF",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/tabbar/home.png",
"selectedIconPath": "static/tabbar/home_select.png",
"text": "首页"
},
{
"pagePath": "pages/message/index",
"iconPath": "static/tabbar/message.png",
"selectedIconPath": "static/tabbar/message_select.png",
"text": "消息"
},
{
"pagePath": "pages/mine/index",
"iconPath": "static/tabbar/mine.png",
"selectedIconPath": "static/tabbar/mine_select.png",
"text": "我的"
}
]
},
"uniIdRouter": {},
"subPackages": [{
"root": "pagesA",
"pages": [{
"path": "task_hall/list",
"style": {
"enablePullDownRefresh": true,
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"navigationBarTitleText": "工单大厅"
}
}, {
"path": "my_order/list",
"style": {
"enablePullDownRefresh": true,
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"navigationBarTitleText": "我的工单"
}
},
{
"path": "my_order/detail",
"style": {
"enablePullDownRefresh": true,
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"navigationBarTitleText": "工单详情"
}
},
{
"path": "course/detail",
"style": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "视频详情"
}
},
{
"path": "chat/index",
"style": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "聊天详情"
}
}
]
}],
"condition": {
"current": 0, // 当前激活的条件,默认为 0
"list": [{
"name": "登录页", // 条件名称
"path": "pagesA/chat/index", // 要打开的页面路径
"query": "" // 可选的页面参数
}]
}
}