commodity.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. {
  2. "height": "auto",
  3. "calcHeight": 80,
  4. "tip": false,
  5. "addBtn": false,
  6. "searchShow": true,
  7. "searchShowBtn": false,
  8. "menu": true,
  9. "viewBtn": false,
  10. "editBtn": false,
  11. "delBtn": false,
  12. "menuWidth": 80,
  13. "searchSpan": 8,
  14. "searchMenuSpan": 8,
  15. "searchMenuPosition": "right",
  16. "border": true,
  17. "index": true,
  18. "selection": true,
  19. "dialogClickModal": false,
  20. "column": [
  21. {
  22. "label": "商品编码",
  23. "prop": "code",
  24. "search": true,
  25. "width": 100,
  26. "rules": [
  27. {
  28. "required": true,
  29. "message": " ",
  30. "trigger": "blur"
  31. }
  32. ]
  33. },
  34. {
  35. "label": "商品名称",
  36. "prop": "cname",
  37. "slot": true,
  38. "search": true,
  39. "width": 100,
  40. "rules": [
  41. {
  42. "required": true,
  43. "message": " ",
  44. "trigger": "blur"
  45. }
  46. ]
  47. },
  48. {
  49. "label": "商品类别",
  50. "prop": "goodsTypeName",
  51. "hide": true,
  52. "addDisabled": false,
  53. "multiple": true,
  54. "rules": [{
  55. "required": true,
  56. "message": " ",
  57. "trigger": "click"
  58. }]
  59. },
  60. {
  61. "label": "规格",
  62. "prop": "typeno",
  63. "search": false
  64. },
  65. {
  66. "label": "品牌",
  67. "prop": "brand",
  68. "slot": true
  69. },
  70. {
  71. "label": "花纹",
  72. "prop": "brandItem",
  73. "slot": true
  74. },
  75. {
  76. "label": "规格尺寸",
  77. "prop": "specs",
  78. "slot": true
  79. },
  80. {
  81. "label": "产品类别",
  82. "prop": "category",
  83. "slot": true
  84. },
  85. {
  86. "label": "产品分类",
  87. "prop": "categoryitem",
  88. "slot": true
  89. },
  90. {
  91. "label": "供应商",
  92. "prop": "corpName",
  93. "slot": true
  94. },
  95. {
  96. "label": "计量单位",
  97. "prop": "unit",
  98. "slot": true
  99. },
  100. {
  101. "label": "包装单位",
  102. "prop": "packgeunit",
  103. "slot": true
  104. },
  105. {
  106. "label": "商品图片",
  107. "prop": "url",
  108. "type": "upload",
  109. "listType": "picture-img",
  110. "dataType": "string",
  111. "action": "/api/blade-resource/oss/endpoint/put-file",
  112. "propsHttp": {
  113. "res": "data",
  114. "url": "link"
  115. },
  116. "hide": true,
  117. "span": 24
  118. },
  119. {
  120. "label": "备注",
  121. "prop": "remarks",
  122. "slot": true
  123. }
  124. ]
  125. }