commodity.json 2.2 KB

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