1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- }, {
- "path": "pages/my/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }, {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/login/serverSetting",
- "style": {
- "navigationBarTitleText": "服务器设置"
- }
- },
- {
- "path" : "pages/loborQuota/index",
- "style" :
- {
- "navigationBarTitleText" : "人工定额管理"
- }
- },
- {
- "path" : "pages/process/index",
- "style" :
- {
- "navigationBarTitleText" : "工序档案"
- }
- },
- {
- "path" : "pages/process/insert",
- "style" :
- {
- "navigationBarTitleText" : "新增工序档案"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {},
- "tabBar": {
- "color": "#666666",
- "selectedColor": "#2185d0",
- "list": [
- {
- "pagePath": "pages/home/index",
- "text": "首页"
- },
- {
- "pagePath": "pages/my/index",
- "text": "我的"
- }
- ]
- }
- }
|