config.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. export const orderOpButtons = [
  2. {
  3. label: '删除订单',
  4. key: 'delete',
  5. color: '#FFC117'
  6. },
  7. {
  8. label: '取消订单',
  9. key: 'cancel',
  10. color: '#ccc'
  11. },
  12. {
  13. label: '去支付',
  14. key: 'pay',
  15. color: '#FFC117'
  16. },
  17. {
  18. label: '确认收货',
  19. key: 'confirm',
  20. color: '#FFC117'
  21. },
  22. // {
  23. // label: '申请退款',
  24. // key: 'refund',
  25. // color: '#FFC117'
  26. // },
  27. // {
  28. // label: '再次购买',
  29. // key: 'rebuy',
  30. // color: '#FFC117'
  31. // },
  32. {
  33. label: '去评论',
  34. key: 'comment',
  35. color: '#FFC117'
  36. }
  37. ]
  38. export const shoppingSubNavs = [
  39. {
  40. label: '全部',
  41. value: 0
  42. },
  43. {
  44. label: '待付款',
  45. value: 1
  46. },
  47. {
  48. label: '待发货',
  49. value: 2
  50. },
  51. {
  52. label: '待核销',
  53. value: 8
  54. },
  55. {
  56. label: '待收货',
  57. value: 3
  58. },
  59. {
  60. label: '待评价',
  61. value: 4
  62. },
  63. {
  64. label: '待成团',
  65. value: 6
  66. },
  67. {
  68. label: '待售后',
  69. value: 7
  70. },
  71. {
  72. label: '已关闭',
  73. value: 5
  74. }
  75. ]
  76. export const businessSubNavs = [
  77. {
  78. label: '全部',
  79. value: 0
  80. },
  81. {
  82. label: '已取消',
  83. value: 5
  84. },
  85. {
  86. label: '待成团',
  87. value: 6
  88. },
  89. {
  90. label: '未付款',
  91. value: 8
  92. },
  93. {
  94. label: '已付款',
  95. value: 9
  96. },
  97. {
  98. label: '已核销',
  99. value: 10
  100. }
  101. ]