pages.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "团购自助兑换"
  7. }
  8. },
  9. {
  10. "path": "pages/order/order",
  11. "style": {
  12. "navigationBarTitleText": "订单"
  13. }
  14. },
  15. {
  16. "path": "pages/user/user",
  17. "style": {
  18. "navigationBarTitleText": "我的"
  19. }
  20. },
  21. {
  22. "path": "pages/order/confirm",
  23. "style": {
  24. "navigationBarTitleText": "确认订单"
  25. }
  26. },
  27. {
  28. "path": "pages/order/detail",
  29. "style": {
  30. "navigationBarTitleText": "团购券"
  31. }
  32. },
  33. {
  34. "path": "pages/user/license",
  35. "style": {
  36. "navigationBarTitleText": "资质亮照"
  37. }
  38. },
  39. {
  40. "path": "pages/order/store",
  41. "style": {
  42. "navigationBarTitleText": "选择门店"
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "团购自助兑换",
  49. "navigationBarBackgroundColor": "#ffffff",
  50. "backgroundColor": "#F8F8F8"
  51. },
  52. "tabBar": {
  53. "backgroundColor": "#ffffff",
  54. "borderStyle": "white",
  55. "color": "#666666",
  56. "selectedColor": "#224d7a",
  57. "list": [
  58. {
  59. "iconPath": "/static/image/coupon.png",
  60. "selectedIconPath": "/static/image/coupon-fill.png",
  61. "pagePath": "pages/index/index",
  62. "text": "首页"
  63. },
  64. {
  65. "iconPath": "/static/image/order.png",
  66. "selectedIconPath": "/static/image/order-fill.png",
  67. "pagePath": "pages/order/order",
  68. "text": "订单"
  69. },
  70. {
  71. "iconPath": "/static/image/user.png",
  72. "selectedIconPath": "/static/image/user-fill.png",
  73. "pagePath": "pages/user/user",
  74. "text": "我的"
  75. }
  76. ]
  77. },
  78. "uniIdRouter": {}
  79. }