12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- "pages": [{
- "path": "pages/index/index" // 首页
- }, {
- "path": "pages/my/my" // 我的
- }, {
- "path": "pages/apps/shunt-places/shunt-places" // 分流名额
- }, {
- "path": "pages/apps/my-grades/my-grades" // 本人成绩
- }, {
- "path": "pages/apps/special-application/special-application" // 特别申请
- }, {
- "path": "pages/apps/change-major/change-major" // 专业分流
- }, {
- "path": "pages/apps/progress-query/progress-query" // 进度查询
- }, {
- "path": "pages/my/user-info/user-info" // 个人信息
- },{
- "path": "pages/my/problem-feedback/problem-feedback" // 个人信息
- }, {
- "path": "pages/common/webview/webview" // 第三方网址页面
- }, {
- "path": "pages/error/403/403"
- } ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationStyle": "custom",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#fff"
- // "backgroundColor": "#fff"
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#007AFF",
- "borderStyle": "black",
- "backgroundColor": "#FFFFFF",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/list.png",
- "selectedIconPath": "static/tabbar/list_active.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/my/my",
- "iconPath": "static/tabbar/me.png",
- "selectedIconPath": "static/tabbar/me_active.png",
- "text": "我的"
- }
- ]
- }
- }
|