123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/selectGradesTerms/index",
- "style": {
- "navigationBarTitleText": "选择年级和学期",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/study/index",
- "style": {
- "navigationBarTitleText": "学习",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/study/lookShipin",
- "style": {
- "navigationBarTitleText": "视频",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/my/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path" : "pages/unitTest/index",
- "style" :
- {
- "navigationBarTitleText" : "单元测试",
- "navigationStyle": "custom"
- }
- }
- ],
- "tabBar": {
- "custom": true,
- "list": []
- },
- // "tabBar": {
- // "height": "90rpx",
- // "iconWidth": "134rpx",
- // "spacing": "0px",
- // "backgroundColor": "transparent",
- // "list": [{
- // "pagePath": "pages/study/index",
- // "iconPath": "static/images/tabbar/unselect/plan-sj.png",
- // "selectedIconPath": "static/images/tabbar/select/plan-sj.png"
- // }, {
- // "pagePath": "pages/study/index",
- // "iconPath": "static/images/tabbar/unselect/develop-sj.png",
- // "selectedIconPath": "static/images/tabbar/select/develop-sj.png"
- // }, {
- // "pagePath": "pages/study/index",
- // "iconPath": "static/images/tabbar/unselect/partner-sj.png",
- // "selectedIconPath": "static/images/tabbar/select/partner-sj.png"
- // }, {
- // "pagePath": "pages/my/index",
- // "iconPath": "static/images/tabbar/unselect/my-sj.png",
- // "selectedIconPath": "static/images/tabbar/select/my-sj.png"
- // }]
- // },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "麦塔软件",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- /* "app-plus": {
- "background": "#efeff4"
- } */
- },
- "uniIdRouter": {},
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "login", //模式名称
- "path": "pages/login/index", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|