1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },{
- "path": "pages/auth/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },{
- "path": "pages/center/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },{
- "path": "pages/center/mmxg/mmxg",
- "style": {
- "navigationBarTitleText": "密码修改"
- }
- },{
- "path": "pages/center/about/about",
- "style": {
- "navigationBarTitleText": "关于应用"
- }
- },{
- "path" : "pages/lq-upgrade/upgrade",
- "style" :
- {
- "navigationBarTitleText" : "APP升级",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/auth/register/register",
- "style" :
- {
- "navigationBarTitleText" : "用户注册",
- "enablePullDownRefresh" : false
- }
- }
- ],
- "tabBar": {
- "color": "#bfbfbf",
- "selectedColor": "#1296db",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/icon/zy1.png",
- "selectedIconPath": "static/icon/zy2.png",
- "text": "首页"
- },{
- "pagePath": "pages/myinfo/index",
- "iconPath": "static/icon/z1.png",
- "selectedIconPath": "static/icon/z2.png",
- "text": "YSX"
- },{
- "pagePath": "pages/gird/index",
- "iconPath": "static/icon/fx1.png",
- "selectedIconPath": "static/icon/fx2.png",
- "text": "宫格"
- }, {
- "pagePath": "pages/center/index",
- "iconPath": "static/icon/center.png",
- "selectedIconPath": "static/icon/center-selected.png",
- "text": "我"
- }]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|