commodity.json 2.2 KB

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