12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText": "原动力有限公司",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "原动力有限公司"
- }
- }
- ,{
- "path" : "pages/mine/mine",
- "style" :
- {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/admissionApply/admissionApply",
- "style" :
- {
- "navigationBarTitleText": "入场申请",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/inputDetectionResult/inputDetectionResult",
- "style" :
- {
- "navigationBarTitleText": "检测结果录入",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/personnelSampling/personnelSampling",
- "style" :
- {
- "navigationBarTitleText": "人员采样",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/checkResult/checkResult",
- "style" :
- {
- "navigationBarTitleText": "检测结果查询",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#1296db",
- "borderStyle": "white",
- "backgroundColor": "#F8F8F8",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/icon/home.png",
- "selectedIconPath": "static/icon/homea.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/mine/mine",
- "iconPath": "static/icon/user.png",
- "selectedIconPath": "static/icon/usera.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#FAF8F8",
- "backgroundColor": "#FAF8F8"
- },
- "uniIdRouter": {}
- }
|