columns.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. // 是否定制 是否合规
  2. const options1 = [
  3. { id: '0', name: '否' },
  4. { id: '1', name: '是' }
  5. ]
  6. export const options01 = [
  7. { id: '0', name: '未设置' },
  8. { id: '1', name: '合规' },
  9. { id: '2', name: '不合规' }
  10. ]
  11. // 专属类型
  12. const options2 = [
  13. { id: '0', name: '非泰康' },
  14. { id: '1', name: '泰康' }
  15. ]
  16. // 销售权限
  17. const options3 = [
  18. { id: '0', name: '无销售权限' },
  19. { id: '1', name: '有销售权限' }
  20. ]
  21. // 是否库存品
  22. const options4 = [
  23. { id: '0', name: '非库存品' },
  24. { id: '1', name: '库存品' }
  25. ]
  26. // 是否启用实时金价
  27. const options5 = [
  28. { id: '0', name: '否' },
  29. { id: '1', name: '是' }
  30. ]
  31. // 供货区域
  32. const options6 = [
  33. { id: '1', name: '全国' },
  34. { id: '2', name: '全国除偏远' }
  35. ]
  36. // 是否启用阶梯
  37. const options7 = [
  38. { id: '0', name: '否' },
  39. { id: '1', name: '是' }
  40. ]
  41. const options8 = [
  42. { id: '1', name: '待完善成本', type: 'info' },
  43. { id: '2', name: '待产品审核', type: 'warning' },
  44. { id: '3', name: '上线已成功', type: 'success' },
  45. { id: '4', name: '上线已驳回', type: 'danger' },
  46. { id: '5', name: '商品已下线', type: 'info' }
  47. ]
  48. const listCol = [
  49. {
  50. prop: 'skuCode',
  51. label: '上线商品编号',
  52. fixed: 'left',
  53. width: '160px'
  54. },
  55. {
  56. prop: 'spuCode',
  57. label: '成本商品编号',
  58. width: '160px'
  59. },
  60. {
  61. prop: 'good_thumb_img',
  62. label: '图片',
  63. _slot_: 'good_thumb_img',
  64. width: '45px'
  65. },
  66. {
  67. prop: 'good_name',
  68. label: '名称',
  69. 'min-width': '160px'
  70. },
  71. // {
  72. // prop: "plat_code",
  73. // label: "平台商品编号",
  74. // width: "170px",
  75. // },
  76. // {
  77. // prop: 'supplierName',
  78. // label: '供应商',
  79. // width: '150px'
  80. // },
  81. {
  82. prop: 'platform_name',
  83. label: '平台名称',
  84. width: '100px'
  85. },
  86. {
  87. label: '来源',
  88. prop: 'create_source',
  89. _slot_: 'create_source',
  90. width: '110px'
  91. },
  92. {
  93. prop: 'is_stock',
  94. label: '商品类型',
  95. _slot_: 'is_stock',
  96. width: '90px'
  97. },
  98. {
  99. prop: 'status',
  100. label: '状态',
  101. _slot_: 'status',
  102. width: '118px'
  103. },
  104. {
  105. prop: 'cat_name',
  106. label: '分类',
  107. width: '118px'
  108. },
  109. {
  110. prop: 'good_type',
  111. label: '是否定制',
  112. _slot_: 'good_type',
  113. width: '70px'
  114. },
  115. {
  116. prop: 'is_compliance',
  117. label: '是否合规',
  118. _slot_: 'is_compliance',
  119. width: '70'
  120. },
  121. {
  122. prop: 'brand_name',
  123. label: '品牌'
  124. },
  125. {
  126. prop: 'companyNo',
  127. label: '业务公司编号',
  128. width: '160px'
  129. },
  130. {
  131. prop: 'company',
  132. label: '业务公司名称',
  133. width: '150px'
  134. },
  135. {
  136. prop: 'plat_code',
  137. label: '平台商品编号',
  138. width: '150px'
  139. },
  140. {
  141. prop: 'purchase',
  142. label: '成本创建人',
  143. width: '95'
  144. },
  145. {
  146. prop: 'company_name',
  147. label: '上线创建人部门',
  148. minWidth: '150px'
  149. },
  150. {
  151. prop: 'creater',
  152. label: '上线创建人',
  153. width: '90px'
  154. },
  155. {
  156. prop: 'addtime',
  157. label: '创建时间',
  158. width: '140px'
  159. },
  160. {
  161. prop: '',
  162. label: '操作',
  163. fixed: 'right',
  164. _noset_: true,
  165. width: '150px',
  166. _slot_: 'operation'
  167. }
  168. ]
  169. const rules = {
  170. platform_type: [
  171. {
  172. required: true,
  173. message: "请选择对接平台",
  174. trigger: "change"
  175. }
  176. ],
  177. is_fixed:[
  178. {
  179. required: true,
  180. message: '请选择定价模式',
  181. trigger: 'change'
  182. }
  183. ],
  184. platform: [
  185. {
  186. required: true,
  187. message: '请选择所属平台',
  188. trigger: 'change'
  189. }
  190. ],
  191. online_reason: [
  192. {
  193. required: true,
  194. message: '上线原因不能为空',
  195. trigger: 'blur'
  196. }
  197. ],
  198. online_remark: [
  199. {
  200. required: true,
  201. message: '上线备注不能为空',
  202. trigger: 'blur'
  203. }
  204. ]
  205. }
  206. export { options1, options2, options3, options4, options5, options6, options7, options8, listCol, rules }