1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "pages": [
- {
- "path": "pages/public/login",
- "navigationBarTitleText": "登陆"
- },
- {
- "path": "pages/public/resetpassword",
- "navigationBarTitleText": "找回密码",
- "app-plus": {
- "bounce": "none",
- "titleNView": false,
- "pullToRefresh": {
- "support": true,
- "color": "#fa436a",
- "style": "default"
- }
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "enablePullDownRefresh": true,
- "navigationBarTitleText": "店铺首页",
- "onReachBottomDistance": 50,
- "app-plus": {
- "bounce": "none",
- "titleNView": false,
- "pullToRefresh": {
- "support": true,
- "color": "#fa436a",
- "style": "default"
- }
- }
- }
- },
- {
- "path":"pages/order/order",
- "style":{
- "navigationBarTitleText": "订单管理"
- }
- },
- {
- "path": "pages/shop/shop",
- "style": {
- "navigationBarTitleText": "商品管理"
- }
- }
- ],
- "tabBar": {
- "color": "#b7b7b7",
- "selectedColor": "#7d66f3",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "text": "店铺首页",
- "iconPath": "static/images/index.png",
- "selectedIconPath": "static/images/index_active.png"
- },
- {
- "pagePath":"pages/order/order",
- "text": "订单管理",
- "iconPath":"static/images/order.png",
- "selectedIconPath": "static/images/order_active.png"
- },
- {
- "pagePath": "pages/shop/shop",
- "text": "商品管理",
- "iconPath": "static/images/shop.png",
- "selectedIconPath": "static/images/shop_active.png"
- }]
- }
- }
|