columns.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. export default [
  2. {
  3. prop: 'outChildCode',
  4. label: '发货工单号',
  5. width: '160'
  6. },
  7. {
  8. prop: 'orderCode',
  9. label: '确认单编号',
  10. width: '160'
  11. },
  12. {
  13. prop: 'outCode',
  14. label: '确认单编号',
  15. width: '160'
  16. },
  17. {
  18. prop: 'companyNo',
  19. label: '业务公司编号',
  20. width: '160'
  21. },
  22. {
  23. prop: 'companyName',
  24. label: '业务公司编号',
  25. width: '160'
  26. },
  27. {
  28. prop: 'customer_code',
  29. label: '客户编号',
  30. width: '160'
  31. },
  32. {
  33. prop: 'customer_name',
  34. label: '客户名称',
  35. width: '160'
  36. },
  37. {
  38. prop: 'supplierNo',
  39. label: '供应商编号 ',
  40. width: '160'
  41. },
  42. {
  43. prop: 'supplierName',
  44. label: '供应商名称',
  45. width: '160'
  46. },
  47. {
  48. prop: 'supplierNo',
  49. label: '供应商编号 ',
  50. width: '160'
  51. },
  52. {
  53. prop: 'spuCode',
  54. label: '商品成本编码',
  55. width: '160'
  56. },
  57. {
  58. prop: 'skuCode',
  59. label: '商品上线编码',
  60. width: '160'
  61. },
  62. {
  63. prop: 'order_type',
  64. label: '商品类型',
  65. _slot_: 'order_type',
  66. width: '85'
  67. },
  68. {
  69. prop: 'order_source',
  70. label: '订单来源',
  71. _slot_: 'order_source',
  72. width: '85'
  73. },
  74. {
  75. prop: 'num',
  76. label: '总数量',
  77. width: '70'
  78. },
  79. {
  80. prop: 'status',
  81. label: '状态',
  82. _slot_: 'status',
  83. width: '120px'
  84. },
  85. // {
  86. // prop: 'send_status',
  87. // label: '分单状态',
  88. // _slot_: 'send_status',
  89. // width: '120px'
  90. // },
  91. {
  92. prop: 'wsm_code',
  93. label: '仓库编号',
  94. width: '160'
  95. },
  96. {
  97. prop: 'addtime',
  98. label: '下单时间',
  99. sortable: true,
  100. width: 150
  101. },
  102. {
  103. prop: 'apply_name',
  104. label: '申请人',
  105. width: '80'
  106. },
  107. {
  108. prop: '',
  109. width: 50,
  110. label: '操作',
  111. fixed: 'right',
  112. _noset_: true,
  113. _slot_: 'operation'
  114. }
  115. ]
  116. // page 是 string 页码
  117. // size 是 string 页码数
  118. // cgdNo 是 string 采购单编号
  119. // returnCode 是 string 退货单编号
  120. // good_type_code 是 string 商品属性
  121. // good_name 是 string 商品名称
  122. // status 是 string 状态
  123. export const sendOutOrderColumns = [
  124. {
  125. type: 'index',
  126. label: '序号',
  127. width: '70px'
  128. },
  129. {
  130. prop: 'value0',
  131. label: '发货工单号',
  132. width: '156px'
  133. },
  134. {
  135. prop: 'value1',
  136. label: '订单编号',
  137. width: '156px'
  138. },
  139. {
  140. prop: 'value11',
  141. label: '商品名称',
  142. 'min-width': '180px'
  143. },
  144. {
  145. prop: 'value14',
  146. label: '发货数量',
  147. width: '100px'
  148. },
  149. {
  150. prop: 'value18',
  151. label: '物流公司',
  152. width: '150px'
  153. },
  154. {
  155. prop: 'value19',
  156. label: '物流单号',
  157. width: '150px'
  158. },
  159. {
  160. prop: 'value20',
  161. label: '物流费用',
  162. width: '140px'
  163. }
  164. ]
  165. export const head = [
  166. '发货工单号',
  167. '确认单编号',
  168. '发货申请单号',
  169. '业务公司编号',
  170. '业务公司名称',
  171. '客户编号',
  172. '客户名称',
  173. '供应商编号',
  174. '供应商名称',
  175. '商品成本编号',
  176. '商品上线编号',
  177. '商品名称',
  178. '订单来源',
  179. '商品类型',
  180. '数量',
  181. '分单状态',
  182. '下单时间',
  183. '申请人名称',
  184. '物流公司',
  185. '物流单号',
  186. '物流费用'
  187. ]