12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path" : "pages/exam/index",
- "style" :
- {
- "navigationBarTitleText" : "考试"
- }
- },
- {
- "path" : "pages/my/index",
- "style" :
- {
- "navigationBarTitleText" : "我的"
- }
- },
- {
- "path" : "pages/demo/index",
- "style" :
- {
- "navigationBarTitleText" : "demo"
- }
- },
- {
- "path" : "pages/course/index",
- "style" :
- {
- "navigationBarTitleText" : "课程"
- }
- },
- {
- "path" : "pages/score/index",
- "style" :
- {
- "navigationBarTitleText" : "成绩"
- }
- }
- ],
- "tabBar": {
- "color": "#565656",
- "selectedColor": "#0856E6",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "fontSize": "13px",
- "iconWidth": "28px",
- "spacing": "0px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/images/tabbar/unselect/index-sj.png",
- "selectedIconPath": "static/images/tabbar/select/index-sj.png",
- "text": "首页"
- }, {
- "pagePath": "pages/exam/index",
- "iconPath": "static/images/tabbar/unselect/exam-sj.png",
- "selectedIconPath": "static/images/tabbar/select/exam-sj.png",
- "text": "考试"
- }, {
- "pagePath": "pages/course/index",
- "iconPath": "static/images/tabbar/unselect/kecheng-sj.png",
- "selectedIconPath": "static/images/tabbar/select/kecheng-sj.png",
- "text": "课程"
- }, {
- "pagePath": "pages/score/index",
- "iconPath": "static/images/tabbar/unselect/score-sj.png",
- "selectedIconPath": "static/images/tabbar/select/score-sj.png",
- "text": "成绩"
- }, {
- "pagePath": "pages/my/index",
- "iconPath": "static/images/tabbar/unselect/my-sj.png",
- "selectedIconPath": "static/images/tabbar/unselect/my-sj.png",
- "text": "我的"
- }]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "麦塔软件",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- /* "app-plus": {
- "background": "#efeff4"
- } */
- },
- "uniIdRouter": {}
- }
|