commodity.json 2.5 KB

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