commodity.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. "minWidth": 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. "minWidth": 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. "props": {
  50. "label": "title"
  51. },
  52. "rules": [{
  53. "required": true,
  54. "message": " ",
  55. "trigger": "click"
  56. }]
  57. },
  58. {
  59. "label": "规格编码",
  60. "prop": "typeno",
  61. "search": true
  62. },
  63. {
  64. "label": "品牌",
  65. "prop": "brand",
  66. "slot": true
  67. },
  68. {
  69. "label": "花纹",
  70. "prop": "brandItem",
  71. "slot": true
  72. },
  73. {
  74. "label": "规格尺寸",
  75. "prop": "specs",
  76. "slot": true
  77. },
  78. {
  79. "label": "产品类别",
  80. "prop": "category",
  81. "slot": true
  82. },
  83. {
  84. "label": "产品分类",
  85. "prop": "categoryitem",
  86. "slot": true
  87. },
  88. {
  89. "label": "供应商",
  90. "prop": "providers",
  91. "slot": true
  92. },
  93. {
  94. "label": "计量单位",
  95. "prop": "unit",
  96. "slot": true
  97. },
  98. {
  99. "label": "包装单位",
  100. "prop": "packgeunit",
  101. "slot": true
  102. },
  103. {
  104. "label": "商品图片",
  105. "prop": "url",
  106. "type": "upload",
  107. "listType": "picture-img",
  108. "dataType": "string",
  109. "action": "/api/blade-resource/oss/endpoint/put-file",
  110. "propsHttp": {
  111. "res": "data",
  112. "url": "link"
  113. },
  114. "hide": true,
  115. "span": 24
  116. },
  117. {
  118. "label": "备注",
  119. "prop": "remarks",
  120. "slot": true
  121. }
  122. ]
  123. }