mobile-workflow/pages.json

142 lines
4.8 KiB
JSON
Raw Normal View History

2024-04-28 10:10:03 +08:00
{
2024-11-25 13:57:24 +08:00
"easycom": {
"custom": {
"^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
"^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
"^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
}
},
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"backgroundColor": "#623FDC",
"app-plus": {
"titleView": false
}
}
}, {
"path": "components/form/sub/ProcessSelect",
"style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "选择流程",
//"navigationStyle": "custom",
"backgroundColor": "#623FDC"
2024-04-28 10:10:03 +08:00
2024-11-25 13:57:24 +08:00
}
}, {
"path": "pages/workspace/workspace",
"style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "工作区",
"navigationStyle": "custom",
"backgroundColor": "#623FDC",
"navigationBarHidden": false
2024-04-28 10:10:03 +08:00
2024-11-25 13:57:24 +08:00
}
}, {
"path": "pages/submit/submit",
"style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "发起流程",
"navigationStyle": "custom",
"navigationBarHidden": false,
"backgroundColor": "#623FDC"
2024-11-25 13:57:24 +08:00
}
}, {
"path": "pages/contacts/contacts",
"style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "通讯录",
//"navigationStyle": "custom",
"backgroundColor": "#623FDC"
}
}, {
"path": "pages/my/my",
"style": {
"navigationBarTitleText": "我的",
// "navigationStyle": "custom",
2024-11-25 13:57:24 +08:00
"backgroundColor": "#623FDC",
"app-plus": {
"titleView": false
}
}
}, {
"path": "pages/instance/instancePreview",
"style": {
"navigationBarTitleText": "流程详情",
"navigationStyle": "custom",
"backgroundColor": "#623FDC",
"navigationBarHidden": false
2024-11-25 13:57:24 +08:00
}
2024-04-28 10:10:03 +08:00
2024-11-25 13:57:24 +08:00
}, {
"path": "pages/submit/InitiateProcess",
"style": {
"navigationBarTitleText": "提交审批",
"navigationStyle": "custom",
2024-11-25 13:57:24 +08:00
"enablePullDownRefresh": false
}
2024-04-28 10:10:03 +08:00
2024-11-25 13:57:24 +08:00
},
{
"path": "pages/my/UserAgent",
"style": {
"navigationBarTitleText": "用户代理人设置",
"enablePullDownRefresh": false
}
},
{
"path": "pages/workspace/UnFinished",
"style": {
"navigationBarTitleText": ""
}
2024-11-25 13:57:24 +08:00
}
],
"globalStyle": {
2024-12-21 16:57:51 +08:00
// "navigationStyle": "custom",
2024-11-25 13:57:24 +08:00
"navigationBarTextStyle": "white",
// "navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#4478F7",
// "backgroundColor": "#4478F7",
"app-plus": {
"titleView": false,
"statusbar": {
"immersed": false
}
},
2024-12-21 16:57:51 +08:00
"animationType": "slide-in-right",
"rpxCalcMaxDeviceWidth": 768, // rpx 计算所支持的最大设备宽度,单位 px默认值为 960
// "rpxCalcBaseDeviceWidth": 1100, // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px默认值为 375
"rpxCalcBaseDeviceWidth": 375,
"rpxCalcIncludeWidth": 750 // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx默认值为 750
2024-11-25 13:57:24 +08:00
},
"uniIdRouter": {}
// "tabBar": {
// "borderStyle": "black", //边框颜色
// "backgroundColor": "#FFFFFF", //背景颜色
// "color": "#8A8A8A", //默认颜色
// "selectedColor": "#4478F7", //选中的颜色
// "list": [
2024-04-28 10:10:03 +08:00
2024-11-25 13:57:24 +08:00
// {
// "text": "",
// "pagePath": "pages/workspace/workspace"
// },
// {
// "iconPath": "static/tabs/contacts-n.png",
// "selectedIconPath": "static/tabs/contacts.png",
// "text": "通讯录",
// "pagePath": "pages/contacts/contacts"
// },
// {
// "iconPath": "static/tabs/my-n.png",
// "selectedIconPath": "static/tabs/my.png",
// "text": "我的",
// "pagePath": "pages/my/my"
// }
// ]
// }
2024-04-28 10:10:03 +08:00
}