12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "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"
- }
- }
- ],
- "tabBar": {
- "height": "150rpx",
- "iconWidth": "134rpx",
- "spacing": "0px",
- "backgroundColor": "transparent",
- "borderStyle": "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/catalogue",
- "iconPath": "static/images/tabbar/unselect/develop-sj.png",
- "selectedIconPath": "static/images/tabbar/select/develop-sj.png"
- }, {
- "pagePath": "pages/study/catalogue",
- "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", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|