KindergartenAppletUI/pages.json

112 lines
2.9 KiB
JSON
Raw Normal View History

2022-10-17 16:00:25 +08:00
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
2022-08-24 15:01:04 +08:00
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
2023-04-19 11:28:12 +08:00
"path": "pages/homepage/homepage",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#D7EEE8"
}
2023-07-21 16:45:18 +08:00
}, {
"path": "pages/Parentinformation/Parentinformation",
"style": {
"navigationBarTitleText": "家长信息绑定",
"enablePullDownRefresh": false,
// "navigationStyle": "custom",
"navigationBarBackgroundColor": "#D7EEE8" //
}
2023-04-19 11:28:12 +08:00
}, {
"path": "pages/prescription/prescription",
"style": {
"navigationBarTitleText": "体质评估运动处方",
2023-04-19 17:20:57 +08:00
"navigationBarTextStyle": "white", // 标题的字体颜色
"navigationBarBackgroundColor": "#37A97B"
2023-04-19 11:28:12 +08:00
}
}, {
2022-08-24 15:01:04 +08:00
"path": "pages/index/index",
"style": {
2023-04-19 11:28:12 +08:00
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#D7EEE8"
2022-08-24 15:01:04 +08:00
}
2023-04-19 11:28:12 +08:00
},
{
"path": "pages/Personal/Personal",
2022-10-17 16:00:25 +08:00
"style": {
"navigationBarTitleText": "",
2023-04-19 11:28:12 +08:00
// "enablePullDownRefresh": false,
"navigationStyle": "custom",
"navigationBarBackgroundColor": "#D7EEE8" //背景颜色
2022-10-17 16:00:25 +08:00
}
2023-04-19 11:28:12 +08:00
}, {
"path": "pages/grade/grade",
"style": {
"navigationBarTitleText": "幼儿体测成绩",
// "enablePullDownRefresh": false,
// "navigationStyle": "custom",
"navigationBarBackgroundColor": "#D7EEE8" //背景颜色
}
2022-10-17 16:00:25 +08:00
}, {
2022-08-24 15:01:04 +08:00
"path": "pages/home/home",
"style": {
2023-04-19 11:28:12 +08:00
"navigationBarTitleText": "",
"navigationStyle": "custom"
// "navigationBarTextStyle": "white",
// "enablePullDownRefresh": false,
}
},
{
"path": "pages/Viewprescription/Viewprescription",
"style": {
"navigationBarTitleText": "体质评估运动处方",
"navigationBarBackgroundColor": "#37A97B",
"navigationBarTextStyle": "white" // 标题的字体颜色
2022-08-24 15:01:04 +08:00
}
}
2022-10-17 16:00:25 +08:00
],
2022-08-24 15:01:04 +08:00
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
2022-10-17 16:00:25 +08:00
"uniIdRouter": {},
"condition": { //模式配置,仅开发期间生效
2023-04-19 11:28:12 +08:00
"current": 0 //当前激活的模式(list 的索引项)
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#435950",
"borderStyle": "black",
"backgroundColor": "#ffffff",
2022-10-17 16:00:25 +08:00
"list": [{
2023-04-19 11:28:12 +08:00
"pagePath": "pages/homepage/homepage",
"iconPath": "static/shouye.png",
"selectedIconPath": "static/homepage.png",
"text": "首页"
},
{
"pagePath": "pages/grade/grade",
"iconPath": "static/grade.png",
"selectedIconPath": "static/chengji.png",
"text": "成绩"
},
{
"pagePath": "pages/prescription/prescription",
"iconPath": "static/chufanghui.png",
"selectedIconPath": "static/chufang.png",
"text": "处方"
},
{
"pagePath": "pages/Personal/Personal",
"iconPath": "static/Personal.png",
"selectedIconPath": "static/wode.png",
"text": "我的"
}
]
2022-10-17 16:00:25 +08:00
}
2022-08-24 15:01:04 +08:00
}