dict.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. module.exports = [
  2. {
  3. name: '是否使用',
  4. code: 'use',
  5. status: '0',
  6. children: [
  7. {
  8. label: '使用中',
  9. value: '0',
  10. sort: 1,
  11. status: '0',
  12. },
  13. {
  14. label: '已禁用',
  15. value: '1',
  16. sort: 2,
  17. status: '0',
  18. },
  19. ],
  20. },
  21. {
  22. name: '店铺状态',
  23. code: 'shop_status',
  24. status: '0',
  25. children: [
  26. {
  27. label: '审核中',
  28. value: '0',
  29. sort: 1,
  30. status: '0',
  31. },
  32. {
  33. label: '审核通过',
  34. value: '1',
  35. sort: 2,
  36. status: '0',
  37. },
  38. {
  39. label: '审核拒绝',
  40. value: '-1',
  41. sort: 3,
  42. status: '0',
  43. },
  44. {
  45. label: '冻结中',
  46. value: '-2',
  47. sort: 4,
  48. status: '0',
  49. },
  50. ],
  51. },
  52. {
  53. name: '广告图类型',
  54. code: 'banner_type',
  55. status: '0',
  56. children: [
  57. {
  58. label: '无事件',
  59. value: '0',
  60. sort: 1,
  61. status: '0',
  62. },
  63. {
  64. label: '跳转',
  65. value: '1',
  66. sort: 2,
  67. status: '0',
  68. },
  69. ],
  70. },
  71. {
  72. name: '跳转类型',
  73. code: 'to_type',
  74. status: '0',
  75. children: [
  76. {
  77. label: '商品跳转',
  78. value: '0',
  79. sort: 1,
  80. status: '0',
  81. },
  82. {
  83. label: '自定义跳转',
  84. value: '1',
  85. sort: 2,
  86. status: '0',
  87. },
  88. ],
  89. },
  90. {
  91. name: '售后类型',
  92. code: 'afterSale_type',
  93. status: '0',
  94. children: [
  95. {
  96. label: '退款',
  97. value: '0',
  98. sort: 1,
  99. status: '0',
  100. },
  101. {
  102. label: '换货',
  103. value: '1',
  104. sort: 2,
  105. status: '0',
  106. },
  107. {
  108. label: '维修',
  109. value: '2',
  110. sort: 3,
  111. status: '0',
  112. },
  113. ],
  114. },
  115. {
  116. name: '售后状态',
  117. code: 'afterSale_status',
  118. status: '0',
  119. children: [
  120. {
  121. label: '申请售后',
  122. value: '0',
  123. sort: 1,
  124. status: '0',
  125. },
  126. {
  127. label: '正在审核',
  128. value: '1',
  129. sort: 2,
  130. status: '0',
  131. },
  132. {
  133. label: '已退款',
  134. value: '-1',
  135. sort: 3,
  136. status: '0',
  137. },
  138. {
  139. label: '已换货',
  140. value: '-2',
  141. sort: 4,
  142. status: '0',
  143. },
  144. {
  145. label: '正在维修',
  146. value: '2',
  147. sort: 5,
  148. status: '0',
  149. },
  150. {
  151. label: '已维修',
  152. value: '-2',
  153. sort: 6,
  154. status: '0',
  155. },
  156. ],
  157. },
  158. {
  159. name: '订单状态',
  160. code: 'order_process',
  161. status: '0',
  162. children: [
  163. {
  164. label: '已下单',
  165. value: '0',
  166. sort: 1,
  167. status: '0',
  168. },
  169. {
  170. label: '邮寄中',
  171. value: '1',
  172. sort: 2,
  173. status: '0',
  174. },
  175. {
  176. label: '已收货',
  177. value: '2',
  178. sort: 3,
  179. status: '0',
  180. },
  181. {
  182. label: '取消订单',
  183. value: '-1',
  184. sort: 4,
  185. status: '0',
  186. },
  187. {
  188. label: '已退款',
  189. value: '-2',
  190. sort: 5,
  191. status: '0',
  192. },
  193. {
  194. label: '申请售后',
  195. value: '-3',
  196. sort: 6,
  197. status: '0',
  198. },
  199. {
  200. label: '正在售后中',
  201. value: '-4',
  202. sort: 7,
  203. status: '0',
  204. },
  205. {
  206. label: '售后已结束',
  207. value: '-5',
  208. sort: 8,
  209. status: '0',
  210. },
  211. ],
  212. },
  213. ];