InspectionCleaning/pages.json

245 lines
6.0 KiB
JSON
Raw Normal View History

2025-04-07 09:30:11 +08:00
{
2025-04-07 13:11:24 +08:00
// 如果您是通过uni_modules形式引入uView可以忽略此配置
"easycom": {
"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [
{
"path": "pages/index/index",
"style": {
2025-04-08 15:56:13 +08:00
"navigationBarTitleText": "今日计划"
2025-04-07 13:11:24 +08:00
}
},
{
"path": "pages/index/list",
"style": {
"navigationBarTitleText": "保洁点位"
}
},
{
"path": "pages/index/cleanDetails",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "保洁详情"
}
},
{
"path": "pages/index/cleanPlan",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "保洁计划"
}
},
{
"path": "pages/index/planList",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "计划列表"
}
},
2025-04-08 13:33:16 +08:00
{
"path": "pages/index/uploadPhoto",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "上传图片"
}
},
2025-04-07 13:11:24 +08:00
{
"path": "pages/my/index",
"style": {
"navigationBarTitleText": "我的",
"navigationBarBackgroundColor": "#4790FF",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
}
},
{
"path": "pages/public/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/my/profile",
"style": {
"navigationBarTitleText": "个人信息",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/account/setting",
"style": {
"navigationBarTitleText": "设置",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/account/password",
"style": {
"navigationBarTitleText": "修改密码",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/account/index",
"style": {
"navigationBarTitleText": "帐号&安全",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/about/index",
"style": {
"navigationBarTitleText": "关于我们",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/account/phone",
"style": {
"navigationBarTitleText": "手机号绑定",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/account/email",
"style": {
"navigationBarTitleText": "邮箱绑定",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/account/logout_account",
"style": {
"navigationBarTitleText": "注销帐号",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/auth",
"style": {
"navigationBarTitleText": "实名认证",
"enablePullDownRefresh": false
}
},
{
"path": "pages/public/page",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/about/feedback",
"style": {
"navigationBarTitleText": "意见反馈",
"enablePullDownRefresh": false
}
},
{
"path": "pages/public/register",
"style": {
"navigationBarTitleText": "注册",
"enablePullDownRefresh": false
}
},
{
"path": "pages/public/forget_password",
"style": {
"navigationBarTitleText": "忘记密码",
"enablePullDownRefresh": false
}
2025-04-07 16:58:53 +08:00
},
{
"path": "pages/user/index",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#e5ebfd",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
}
},
{
"path": "pages/user/unitInfo/index",
"style": {
"navigationBarTitleText": "单位信息",
"navigationBarBackgroundColor": "white",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/user/versionInfo/index",
"style": {
"navigationBarTitleText": "版本信息",
"navigationBarBackgroundColor": "white",
"navigationBarTextStyle": "black"
}
2025-04-07 13:11:24 +08:00
}
],
//分包加载配置,此配置为小程序的分包加载机制。
"subPackages": [
{
"root": "pages/subPack", //子包的根目录
"pages": [
{
"path": "index/detail",
"style": {
"navigationBarTitleText": "详情"
}
}
]
}
],
2025-04-07 09:30:11 +08:00
2025-04-07 13:11:24 +08:00
"globalStyle": {
"navigationBarTextStyle": "#211D2F",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "white",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#2D2D2D",
"selectedColor": "#4183F8",
"borderStyle": "white",
"list": [
{
2025-04-08 15:56:13 +08:00
"pagePath": "pages/index/planList",
2025-04-07 13:11:24 +08:00
"iconPath": "static/tab/list.png",
"selectedIconPath": "static/tab/list_cur.png",
"text": "计划"
},
{
2025-04-08 15:56:13 +08:00
"pagePath": "pages/index/index",
"iconPath": "static/tab/home.png",
"selectedIconPath": "static/tab/home_cur.png",
"text": "首页"
2025-04-07 16:58:53 +08:00
},
2025-04-08 15:56:13 +08:00
// {
// "pagePath": "pages/my/index",
// "iconPath": "static/tab/my.png",
// "selectedIconPath": "static/tab/my_cur.png",
// "text": "我的"
// },
2025-04-07 16:58:53 +08:00
{
"pagePath": "pages/user/index",
"iconPath": "static/tab/my.png",
"selectedIconPath": "static/tab/my_cur.png",
"text": "设置"
2025-04-07 13:11:24 +08:00
}
]
},
// 分包预载配置
"preloadRule": {
// 当我们进入了pages/index/index页面以后就会预下载pages/subPack分包
"pages/index/index": {
"network": "all", //在指定网络下预下载可选值为all不限网络、wifi仅wifi下预下载
"packages": ["pages/subPack"] //进入页面后预下载分包
}
},
"uniIdRouter": {}
2025-04-07 09:30:11 +08:00
}