123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/login/index",
- "style" :
- {
- "navigationBarTitleText" : "",
- // 去掉top导航栏
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "仪享云",
- "navigationBarBackgroundColor":"#ffffff"
-
- }
- },
-
-
- {
- "path" : "pages/teacher/navigation",
- "style" :
- {
- "navigationBarTitleText" : "仪享云教师端",
- "enablePullDownRefresh" : false
- }
- },
-
- {
- "path" : "pages/teacher/index",
- "style" :
- {
- "navigationBarTitleText" : "仪享云教师端",
- "enablePullDownRefresh" : false
- }
- },
-
-
-
- {
- "path" : "pages/user/set",
- "style" :
- {
- "navigationBarTitleText" : "账号设置"
-
- }
- },
-
- {
- "path" : "pages/index/detail",
- "style" :
- {
- "navigationBarTitleText" : "借单详情",
- "enablePullDownRefresh" : false,
- "navigationBarBackgroundColor":"#ffffff"
- }
- },
- {
- "path" : "pages/index/console",
- "style" :
- {
- "navigationBarTitleText" : "控制台",
- "enablePullDownRefresh" : false,
- "navigationBarBackgroundColor":"#ffffff"
- }
- },
- {
- "path" : "pages/user/index",
- "style" :
- {
- "navigationBarTitleText" : "我的",
- "enablePullDownRefresh" : false,
- "navigationBarBackgroundColor":"#ffffff"
- }
- },
- {
- "path" : "pages/index/scan",
- "style" :
- {
- "navigationBarTitleText" : "",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/teacher/message",
- "style" :
- {
- "navigationBarTitleText" : "",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/teacher/application",
- "style" :
- {
- "navigationBarTitleText" : "仪器借用申请",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/teacher/edit",
- "style" :
- {
- "navigationBarTitleText" : "仪器借取修改",
- "enablePullDownRefresh" : false,
- "navigationBarBackgroundColor":"#ffffff"
- }
- },
- {
- "path" : "pages/student/index",
- "style" :
- {
- "navigationBarTitleText" : "仪享云学生端",
- "enablePullDownRefresh" : false
- }
- }
- ,{
- "path": "uni_modules/q-sign/pages/q-sign",
- "style": {
- "navigationBarTitleText": "签字"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {},
- "tabBar": {
- "height": "100px",
- "color": "#000",
- "selectedColor": "#2d8cf0",
- "backgroundColor": "#fff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/img/home.png",
- "selectedIconPath": "static/img/homes.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/index/console",
- "iconPath": "static/img/console.png",
- "selectedIconPath": "static/img/consoles.png",
- "text": "控制台"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/img/user.png",
- "selectedIconPath": "static/img/users.png",
- "text": "我的"
- }
- ]
- }
- }
|