pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/public/login",
  5. "navigationBarTitleText": "登陆"
  6. },
  7. {
  8. "path": "pages/public/resetpassword",
  9. "navigationBarTitleText": "找回密码",
  10. "app-plus": {
  11. "bounce": "none",
  12. "titleNView": false,
  13. "pullToRefresh": {
  14. "support": true,
  15. "color": "#fa436a",
  16. "style": "default"
  17. }
  18. }
  19. },
  20. {
  21. "path": "pages/index/index",
  22. "style": {
  23. "enablePullDownRefresh": true,
  24. "navigationBarTitleText": "店铺首页",
  25. "onReachBottomDistance": 50,
  26. "app-plus": {
  27. "bounce": "none",
  28. "titleNView": false,
  29. "pullToRefresh": {
  30. "support": true,
  31. "color": "#fa436a",
  32. "style": "default"
  33. }
  34. }
  35. }
  36. },
  37. {
  38. "path":"pages/order/order",
  39. "style":{
  40. "navigationBarTitleText": "订单管理"
  41. }
  42. },
  43. {
  44. "path": "pages/shop/shop",
  45. "style": {
  46. "navigationBarTitleText": "商品管理"
  47. }
  48. }
  49. ],
  50. "tabBar": {
  51. "color": "#b7b7b7",
  52. "selectedColor": "#7d66f3",
  53. "borderStyle": "black",
  54. "backgroundColor": "#ffffff",
  55. "list": [{
  56. "pagePath": "pages/index/index",
  57. "text": "店铺首页",
  58. "iconPath": "static/images/index.png",
  59. "selectedIconPath": "static/images/index_active.png"
  60. },
  61. {
  62. "pagePath":"pages/order/order",
  63. "text": "订单管理",
  64. "iconPath":"static/images/order.png",
  65. "selectedIconPath": "static/images/order_active.png"
  66. },
  67. {
  68. "pagePath": "pages/shop/shop",
  69. "text": "商品管理",
  70. "iconPath": "static/images/shop.png",
  71. "selectedIconPath": "static/images/shop_active.png"
  72. }]
  73. }
  74. }