| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- {
- "pages": [
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/order/list",
- "style": {
- "navigationBarTitleText": "订单列表"
- }
- },
- {
- "path": "pages/order/detail",
- "style": {
- "navigationBarTitleText": "订单详情",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/device/list",
- "style": {
- "navigationBarTitleText": "设备列表"
- }
- },
- {
- "path": "pages/finance/index",
- "style": {
- "navigationBarTitleText": "财务管理"
- }
- },
- {
- "path": "pages/finance/withdraw",
- "style": {
- "navigationBarTitleText": "提现管理"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "自助洗车运营管理",
- "navigationBarBackgroundColor": "#ffffff",
- "backgroundColor": "#f5f5f5"
- },
- "tabBar": {
- "color": "#666666",
- "selectedColor": "#007AFF",
- "backgroundColor": "#ffffff",
- "borderStyle": "black",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页"
- },
- {
- "pagePath": "pages/order/list",
- "text": "订单"
- },
- {
- "pagePath": "pages/device/list",
- "text": "设备"
- },
- {
- "pagePath": "pages/finance/index",
- "text": "财务"
- }
- ]
- }
- }
|