xinelu-doctor-app/pages.json

84 lines
2.0 KiB
JSON
Raw Normal View History

2023-09-19 15:31:55 +08:00
{
2023-10-23 09:34:16 +08:00
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
2023-09-19 15:31:55 +08:00
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
2023-10-23 09:30:36 +08:00
"path": "pages/homepage/homepage",
2023-10-24 10:09:32 +08:00
"style": {
"navigationBarTitleText": "工单",
"onReachBottomDistance": 20, //距离底部多远时触发 单位为px
"enablePullDownRefresh": true //设置参数为true
}
},
2023-10-24 10:11:43 +08:00
{
"path": "pages/ServiceSchedule/ServiceSchedule",
"style": {
"navigationBarTitleText": "服务时间表",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#4ac4ab"
}
},
2023-10-24 10:09:32 +08:00
{
"path": "pages/seekadvicefrom/seekadvicefrom",
2023-10-23 10:39:04 +08:00
"style": {
"enablePullDownRefresh": false,
2023-10-24 10:09:32 +08:00
"navigationStyle": "custom"
2023-10-23 10:39:04 +08:00
}
2023-10-24 10:09:32 +08:00
},
{
"path": "pages/login/login",
2023-09-19 15:31:55 +08:00
"style": {
2023-10-23 09:30:36 +08:00
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
2023-10-23 10:39:04 +08:00
},
2023-10-23 10:09:45 +08:00
{
2023-10-23 09:30:36 +08:00
"path": "pages/myinformation/myinformation",
"style": {
2023-10-24 10:18:10 +08:00
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false
// "navigationStyle": "custom"
2023-10-24 10:09:32 +08:00
}
}, {
"path": "pages/taskDetails/taskDetails",
"style": {
"navigationBarTitleText": "工单详情",
"enablePullDownRefresh": false
2023-09-19 15:31:55 +08:00
}
2023-10-24 10:11:43 +08:00
}, {
"path": "pages/Personalinfo/Personalinfo",
"style": {
"navigationBarTitleText": "个人信息",
"enablePullDownRefresh": false
}
2023-09-19 15:31:55 +08:00
}
],
"globalStyle": {
2023-10-23 15:35:41 +08:00
"navigationBarTextStyle": "white",
2023-10-23 09:30:36 +08:00
"navigationBarTitleText": "",
2023-10-23 10:39:04 +08:00
"navigationBarBackgroundColor": "#18CBB3",
2023-09-19 15:31:55 +08:00
"backgroundColor": "#F8F8F8"
},
2023-10-23 09:30:36 +08:00
"uniIdRouter": {},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#435950",
2023-10-23 10:39:04 +08:00
"borderStyle": "white",
2023-10-23 09:30:36 +08:00
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/homepage/homepage",
"iconPath": "static/homepage.png",
2023-10-24 10:09:32 +08:00
"selectedIconPath": "static/homepages.png",
2023-10-23 09:30:36 +08:00
"text": "首页"
},
{
"pagePath": "pages/myinformation/myinformation",
2023-10-24 10:09:32 +08:00
"iconPath": "static/my.png",
"selectedIconPath": "static/mys.png",
2023-10-23 09:30:36 +08:00
"text": "我的"
}
]
}
2023-10-24 10:11:43 +08:00
}