1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "pages": [{
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "经销商工作平台"
- // "app-plus": {
- // "titleNView": false
- // }
- }
- },
- {
- "path": "pages/msg/index",
- "style": {
- "navigationBarTitleText": "消息"
- }
- },
- {
- "path": "pages/data/index",
- "style": {
- "navigationBarTitleText": "数据"
- }
- },
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/home/store/index",
- "style": {
- "navigationBarTitleText": "门店信息",
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- // #ifdef H5
- "navigationBarBackgroundColor": "#03803B",
- // #endif
- "app-plus": {
- "bounce": "none",
- "scrollIndicator": "none",
- "titleNView": {
- "backgroundImage": "linear-gradient(to bottom, #03803B, #FF6F3B)"
- }
- }
- },
- "tabBar": {
- "color": "#7C7C7C",
- "selectedColor": "#259255",
- "borderStyle": "white",
- "backgroundColor": "#FFFFFF",
- "list": [{
- "pagePath": "pages/home/index",
- "text": "首页",
- "iconPath": "static/images/tabBar/home.png",
- "selectedIconPath": "static/images/tabBar/home_selected.png"
- },
- {
- "pagePath": "pages/data/index",
- "text": "数据",
- "iconPath": "/static/images/tabBar/data.png",
- "selectedIconPath": "static/images/tabBar/data_selected.png"
- },
- {
- "pagePath": "pages/msg/index",
- "text": "消息",
- "iconPath": "static/images/tabBar/msg.png",
- "selectedIconPath": "static/images/tabBar/msg_selected.png"
- },
- {
- "pagePath": "pages/me/index",
- "text": "我的",
- "iconPath": "static/images/tabBar/me.png",
- "selectedIconPath": "static/images/tabBar/me_selected.png"
- }
- ]
- }
- }
|