columns.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. export default [
  2. { type: "selection", fixed: "left", _noset_: true },
  3. {
  4. prop: "skuCode",
  5. label: "商品编码",
  6. width: "160",
  7. },
  8. {
  9. prop: "good_thumb_img",
  10. label: "图片",
  11. _slot_: "good_thumb_img",
  12. "width": "50",
  13. },
  14. {
  15. prop: "good_name",
  16. label: "商品名称",
  17. // good_thumb_img
  18. "min-width": "120",
  19. },
  20. {
  21. prop: "plat_code",
  22. label: "平台商品编号",
  23. "width": "160",
  24. },
  25. {
  26. prop: "cat_name",
  27. label: "商品分类",
  28. width: "120",
  29. },
  30. {
  31. prop: "unit",
  32. label: "单位",
  33. width: "45",
  34. },
  35. {
  36. prop: "model",
  37. label: "规格",
  38. _slot_: "model",
  39. width: "110",
  40. },
  41. {
  42. prop: "brand_name",
  43. label: "品牌",
  44. "width": "100",
  45. },
  46. {
  47. prop: "is_stock",
  48. label: "库存类型",
  49. _slot_: "is_stock",
  50. "width": "100",
  51. },
  52. {
  53. prop: "platform_name",
  54. label: "所属平台",
  55. "width": "100",
  56. },
  57. {
  58. prop: "company",
  59. label: "业务公司",
  60. "min-width": "150",
  61. },
  62. ]