options.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. export default {
  2. serviceOption: [//假数据
  3. {
  4. value: "选项1",
  5. label: "待业务审核",
  6. },
  7. {
  8. value: "选项2",
  9. label: "待供应商反馈",
  10. },
  11. {
  12. value: "选项3",
  13. label: "待采购反馈",
  14. },
  15. {
  16. value: "选项4",
  17. label: "待采购审核",
  18. },
  19. {
  20. value: "选项5",
  21. label: "处理已结束",
  22. },
  23. {
  24. value: "d",
  25. label: "业务已驳回",
  26. },
  27. {
  28. value: "d",
  29. label: "采购已驳回",
  30. },
  31. ],
  32. columns:[
  33. {
  34. prop: "returnCode",
  35. label: "售后申请单",
  36. width:"160"
  37. },
  38. {
  39. prop:"apply_name",
  40. label:"申请人",
  41. },
  42. {
  43. prop: "orderCode",
  44. label: "确认单编号",
  45. width:"160"
  46. },
  47. {
  48. prop: "outCode",
  49. label: "发货申请单编号",
  50. width:"160"
  51. },
  52. {
  53. prop: "total_num",
  54. label: "出库总数",
  55. },
  56. {
  57. prop: "good_code",
  58. label: "商品编码",
  59. width:"140"
  60. },
  61. {
  62. prop:"good_name",
  63. label:"商品名称",
  64. width:"150"
  65. },
  66. {
  67. prop:"error_num",
  68. label:"异常数量",
  69. },
  70. {
  71. prop:"error_msg",
  72. label:"异常原因",
  73. },
  74. // {
  75. // prop:"error_img",
  76. // label:"异常图片",
  77. // },
  78. {
  79. prop:"error_remark",
  80. label:"备注"
  81. },
  82. {
  83. prop:"except_code",
  84. label:"期望意愿",
  85. _slot_: "except_code",
  86. width:100,
  87. },
  88. {
  89. prop: "status",
  90. label: "状态",
  91. _slot_: "status",
  92. width: "120px",
  93. },
  94. {
  95. prop:"addtime",
  96. label:"添加时间",
  97. width:150,
  98. },
  99. {
  100. prop:"return_wsm",
  101. label:"退回仓库编码",
  102. width:"120"
  103. },
  104. {
  105. prop:"contactor",
  106. label:"联系人",
  107. },
  108. {
  109. prop:"mobile",
  110. label:"联系方式",
  111. },
  112. {
  113. prop:"addr",
  114. label:"退货地址",
  115. },
  116. {
  117. prop:"post_company",
  118. label:"快递名称",
  119. },
  120. {
  121. prop:"post_fee",
  122. label:"物流费",
  123. },
  124. {
  125. prop:"post_own",
  126. label:"费用承担方",
  127. width:"100",
  128. _slot_: "post_own",
  129. },
  130. {
  131. prop:"customer_code",
  132. label:"客户编码",
  133. width:"150"
  134. },
  135. {
  136. prop:"customer_name",
  137. label:"客户名称",
  138. width:"200"
  139. },
  140. {
  141. prop: "",
  142. label: "操作",
  143. fixed: "right",
  144. _noset_: true,
  145. _slot_: "operation",
  146. width:50,
  147. },
  148. ]
  149. }