多租户商城-商户小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

165 lines
5.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. /**
  2. * @FileDescription:我的页面相关对象
  3. * @Author: kahu
  4. * @Date: 2022/11/4
  5. * @LastEditors: kahu
  6. * @LastEditTime: 2022/11/4
  7. */
  8. export const orderCardList = [
  9. {
  10. id: 1,
  11. label: '待付款',
  12. labelkey: 'page.due',
  13. key: 'waitPayOrderCount',
  14. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_daifukuan.png',
  15. jumpUrl: '../../../pages_category_page1/orderModule/index?type=1'
  16. },
  17. {
  18. id: 2,
  19. label: '待发货',
  20. labelkey: 'page.goodswaitingtobesent',
  21. key: 'waitSendOrderCount',
  22. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_daifahuo.png',
  23. jumpUrl: '../../../pages_category_page1/orderModule/index?type=2'
  24. },
  25. {
  26. id: 3,
  27. label: '待收货',
  28. labelkey: 'page.waittobereceived',
  29. key: 'waitReceiveOrderCount',
  30. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_daishouhuo.png',
  31. jumpUrl: '../../../pages_category_page1/orderModule/index?type=3'
  32. },
  33. {
  34. id: 4,
  35. label: '全部订单',
  36. labelkey: 'page.fullorder',
  37. key: '',
  38. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_allorder.png',
  39. jumpUrl: '../../../pages_category_page1/orderModule/index'
  40. }
  41. ]
  42. export const fastCardOneList = [
  43. {
  44. id: 1,
  45. label: '我的收藏',
  46. labelkey: 'page.mycollection',
  47. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_collect.png',
  48. jumpUrl: '../../../pages_category_page2/userModule/collection'
  49. },
  50. {
  51. id: 2,
  52. label: '我的问答',
  53. labelkey: 'page.myquestionsandanswers',
  54. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_question.png',
  55. jumpUrl: '../../../pages_category_page2/userModule/questionList'
  56. },
  57. {
  58. id: 3,
  59. label: '浏览足迹',
  60. labelkey: 'page.browsingfootprint',
  61. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_footprint.png',
  62. jumpUrl: '../../../pages_category_page2/userModule/footprintList'
  63. },
  64. {
  65. id: 4,
  66. label: '我的评价',
  67. labelkey: 'page.myassessment',
  68. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_evaluate.png',
  69. jumpUrl: '../../../pages_category_page1/goodsModule/userEvaluate'
  70. },
  71. {
  72. id: 5,
  73. label: '我的账户',
  74. labelkey: 'page.myaccount',
  75. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_account.png',
  76. jumpUrl: '../../../pages_category_page2/userModule/memberAccount'
  77. },
  78. {
  79. id: 6,
  80. label: '我的卡券',
  81. labelkey: 'page.mycardcoupon',
  82. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_card_coupon.png',
  83. jumpUrl: '../../../pages_category_page2/userModule/coupon'
  84. },
  85. {
  86. id: 7,
  87. label: '我的积分',
  88. labelkey: 'page.myintegral',
  89. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_integral.png',
  90. jumpUrl: '../../../pages_category_page1/integral/index'
  91. },
  92. {
  93. id: 8,
  94. label: '我的售后',
  95. labelkey: 'page.myaftersales',
  96. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_after_sale.png',
  97. jumpUrl: '../../../pages_category_page2/orderModule/afterSale'
  98. },
  99. ]
  100. export const fastCardTwoList = [
  101. {
  102. id: 1,
  103. label: '分销中心',
  104. labelkey: 'page.distributioncenter',
  105. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_distribution.png',
  106. jumpUrl: '../../../pages_category_page1/distributionModule/index'
  107. },
  108. {
  109. id: 2,
  110. label: '商家入驻',
  111. labelkey: 'page.merchantsettlement',
  112. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_merchant_settlement.png',
  113. jumpUrl: 'function:handleApplySettle'
  114. },
  115. {
  116. id: 3,
  117. label: '会员中心',
  118. labelkey: 'page.membercenter',
  119. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_vip.png',
  120. jumpUrl: '../../../pages_category_page1/memberCenter/index'
  121. },
  122. {
  123. id: 4,
  124. label: '银行卡',
  125. labelkey: 'page.bankcard',
  126. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_bank_card.png',
  127. jumpUrl: '../../../pages_category_page2/userModule/bankcard'
  128. },
  129. {
  130. id: 5,
  131. label: '地址管理',
  132. labelkey: 'page.addressmanager',
  133. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_address_manager.png',
  134. jumpUrl: '../../../pages_category_page2/userModule/address'
  135. },
  136. {
  137. id: 6,
  138. label: '签到',
  139. labelkey: 'page.signin',
  140. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_sign_in.png',
  141. jumpUrl: '../../../pages_category_page1/integral/sign'
  142. }, {
  143. id: 7,
  144. label: '优惠券',
  145. labelkey: 'page.coupon',
  146. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_coupon.png',
  147. jumpUrl: '../../../pages_category_page1/coupon/list'
  148. },
  149. {
  150. id: 8,
  151. label: '平台客服',
  152. labelkey: 'page.platformcustomerservice',
  153. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_customer_service.png',
  154. jumpUrl: 'function:flyToService'
  155. },
  156. {
  157. id: 9,
  158. label: '多语言',
  159. labelkey: 'page.language',
  160. icon: 'https://wechat.hnthee.com/ceres-local-file/image/user_multilingual.png',
  161. jumpUrl: '../../../pages_category_page2/userModule/language'
  162. }
  163. ]