| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "应急处理"
- }
- },
- {
- "path": "pages/addHandle/index",
- "style": {
- "navigationBarTitleText": "新增应急处理"
- }
- },
- {
- "path": "pages/details/index",
- "style": {
- "navigationBarTitleText": "应急处理详情"
- }
- },
- {
- "path": "pages/leave/index",
- "style": {
- "navigationBarTitleText": "请假管理"
- }
- },
- {
- "path": "pages/addLeave/index",
- "style": {
- "navigationBarTitleText": "请假"
- }
- },
- {
- "path": "pages/face/index",
- "style": {
- "navigationBarTitleText": "新增应急处置"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#fff"
- },
- "uniIdRouter": {},
- "tabBar": {
- "color": "#7A7E83", // tab 上的文字默认颜色
- "selectedColor": "#7B5DF0", // tab 上的文字选中时的颜色
- "borderStyle": "black", // tabbar 上边框的颜色,可选值 black/white
- "backgroundColor": "#ffffff", // tab 的背景色
- "list": [{ // 最少2个、最多5个 tab
- "pagePath": "pages/index/index", // 页面路径,必须在 pages 中先定义
- "iconPath": "static/medical_services.svg", // 图片路径,icon 大小限制为40kb,建议尺寸为 81px * 81px
- "selectedIconPath": "static/medical_service.svg", // 选中时的图片路径
- "text": "应急处理" // tab 上按钮文字
- }, {
- "pagePath": "pages/leave/index",
- "iconPath": "static/schedule (2).svg",
- "selectedIconPath": "static/schedule.svg",
- "text": "请假管理"
- }]
- }
- }
|