12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {
-
- "pages": [{
- "path": "pages/index/index",
- "style": {
- "enablePullDownRefresh": true
- }
- },
- // 退出系统提示页
- {
- "path": "pages/loginOutTip/loginOutTip",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/boundPhone/boundPhone",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationStyle": "default"
- }
- },
- // 课程
- {
- "path": "pages/course/list",
- "style": {
- "navigationStyle": "custom"
- }
- },
- // 录取通知书
- {
- "path": "pages/certificate/notice",
- "style": {}
- },
- // 争霸赛报名
- {
- "path": "pages/signup/signup",
- "style": {}
- },
- {
- "path": "pages/boundPhone/agreement",
- "style": {
- "navigationBarTitleText": "服务协议",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationStyle": "default"
- }
- },
- {
- "path": "pages/index/upgrade",
- "style": {
- "navigationBarTitleText": "系统升级",
- "enablePullDownRefresh": false
- }
- },
- // 没有权限进入系统
- {
- "path": "pages/index/jurisdiction",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- // 授权头像昵称
- {
- "path" : "pages/information/information",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black"
- },
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- // {
- // "name": "", //模式名称
- // "path": "pages/boundPhone/boundPhone", //启动页面,必选
- // "query": "" //启动参数,在页面的onLoad函数里面得到
- // }
- {
- "name": "", //模式名称
- "path": "pages/index/index", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
-
- }
- }
|