columns.js 3.1 KB

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