pages.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "首页",
  14. "enablePullDownRefresh": false
  15. }
  16. },
  17. {
  18. "path": "pages/order/list",
  19. "style": {
  20. "navigationBarTitleText": "订单列表"
  21. }
  22. },
  23. {
  24. "path": "pages/order/detail",
  25. "style": {
  26. "navigationBarTitleText": "订单详情",
  27. "navigationStyle": "custom"
  28. }
  29. },
  30. {
  31. "path": "pages/device/list",
  32. "style": {
  33. "navigationBarTitleText": "设备列表"
  34. }
  35. },
  36. {
  37. "path": "pages/finance/index",
  38. "style": {
  39. "navigationBarTitleText": "财务管理"
  40. }
  41. },
  42. {
  43. "path": "pages/finance/withdraw",
  44. "style": {
  45. "navigationBarTitleText": "提现管理"
  46. }
  47. }
  48. ],
  49. "globalStyle": {
  50. "navigationBarTextStyle": "black",
  51. "navigationBarTitleText": "自助洗车运营管理",
  52. "navigationBarBackgroundColor": "#ffffff",
  53. "backgroundColor": "#f5f5f5"
  54. },
  55. "tabBar": {
  56. "color": "#666666",
  57. "selectedColor": "#007AFF",
  58. "backgroundColor": "#ffffff",
  59. "borderStyle": "black",
  60. "list": [
  61. {
  62. "pagePath": "pages/index/index",
  63. "text": "首页"
  64. },
  65. {
  66. "pagePath": "pages/order/list",
  67. "text": "订单"
  68. },
  69. {
  70. "pagePath": "pages/device/list",
  71. "text": "设备"
  72. },
  73. {
  74. "pagePath": "pages/finance/index",
  75. "text": "财务"
  76. }
  77. ]
  78. }
  79. }