columns.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. const columns = [
  2. {
  3. prop: 'returnCode',
  4. label: '售后申请单号',
  5. span: 6
  6. },
  7. {
  8. prop: 'status',
  9. label: '售后申请单状态',
  10. _slot_: 'status',
  11. span: 6
  12. },
  13. {
  14. prop: 'outCode',
  15. label: '发货单编号',
  16. span: 6
  17. },
  18. {
  19. prop: 'order_type',
  20. label: '订单类别',
  21. _slot_: 'order_type',
  22. span: 6
  23. },
  24. {
  25. prop: 'is_receive',
  26. label: '期望结果',
  27. _slot_: 'is_receive',
  28. span: 6
  29. },
  30. {
  31. prop: 'addtime',
  32. label: '创建时间',
  33. span: 6
  34. },
  35. {
  36. prop: 'total_num',
  37. label: '发货总数量',
  38. span: 4
  39. },
  40. {
  41. prop: 'error_num',
  42. label: '异常数量',
  43. span: 4
  44. },
  45. {
  46. prop: 'apply_name',
  47. label: '申请人',
  48. span: 4
  49. },
  50. {
  51. prop: 'error_msg',
  52. label: '异常原因',
  53. span: 6
  54. },
  55. {
  56. prop: 'except_code',
  57. label: '期望',
  58. _slot_: 'except_code',
  59. span: 6
  60. },
  61. {
  62. prop: 'error_img',
  63. label: '异常图片',
  64. _slot_: 'error_img',
  65. span: 12
  66. },
  67. {
  68. prop: 'error_remark',
  69. label: '备注',
  70. span: 24
  71. }
  72. // {
  73. // prop: "sale_price",
  74. // label: "销售单价",
  75. // },
  76. // {
  77. // prop: "origin_price",
  78. // label: "采购单价",
  79. // },
  80. // {
  81. // prop: "sale_price",
  82. // label: "商品单价",
  83. // },
  84. // {
  85. // prop: "total_price",
  86. // label: "发货单总价",
  87. // },
  88. // {
  89. // prop: "updatetime",
  90. // label: "更新时间",
  91. // },
  92. ]
  93. const listColumns = [
  94. {
  95. prop: 'returnCode',
  96. label: '售后申请单',
  97. width: '160'
  98. },
  99. {
  100. prop: 'orderCode',
  101. label: '订单编号',
  102. width: '160'
  103. },
  104. {
  105. prop: 'company_name',
  106. label: '申请人部门',
  107. minWidth: '150px'
  108. },
  109. {
  110. prop: 'apply_name',
  111. label: '申请人'
  112. },
  113. // {
  114. // prop: "orderCode",
  115. // label: "销售订单编号",
  116. // width:"160"
  117. // },
  118. {
  119. prop: 'outCode',
  120. label: '发货单编号',
  121. width: '160'
  122. },
  123. {
  124. prop: 'total_num',
  125. label: '出库总数'
  126. },
  127. {
  128. prop: 'good_code',
  129. label: '商品编码',
  130. width: '140'
  131. },
  132. {
  133. prop: 'good_name',
  134. label: '商品名称',
  135. width: '150'
  136. },
  137. // {
  138. // prop:"error_num",
  139. // label:"异常数量",
  140. // },
  141. // {
  142. // prop:"error_msg",
  143. // label:"异常原因",
  144. // },
  145. // {
  146. // prop:"except_code",
  147. // label:"期望意愿",
  148. // _slot_: "except_code",
  149. // width:100,
  150. // },
  151. {
  152. prop: 'status',
  153. label: '状态',
  154. _slot_: 'status',
  155. width: '120px'
  156. },
  157. {
  158. prop: 'addtime',
  159. label: '添加时间',
  160. width: 150
  161. },
  162. // {
  163. // prop:"post_company",
  164. // label:"快递名称",
  165. // },
  166. // {
  167. // prop:"post_fee",
  168. // label:"物流费",
  169. // },
  170. // {
  171. // prop:"post_own",
  172. // label:"费用承担方",
  173. // width:"100",
  174. // _slot_: "post_own",
  175. // },
  176. // {
  177. // prop:"customer_code",
  178. // label:"客户编码",
  179. // width:"150"
  180. // },
  181. {
  182. prop: 'customer_name',
  183. label: '客户名称',
  184. width: '200'
  185. },
  186. {
  187. prop: '',
  188. label: '操作',
  189. fixed: 'right',
  190. _noset_: true,
  191. _slot_: 'operation',
  192. width: 50
  193. }
  194. ]
  195. const statusOptions = [
  196. { value: '1', label: '待采购反馈' },
  197. { value: '2', label: '已生成采购单' },
  198. { value: '4', label: '已取消采购' }
  199. ]
  200. export { columns, statusOptions, listColumns }