commodity.json 2.5 KB

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