Browse Source

隐藏物料列表字段过长的问题

fix_bug_pro20231227
pref_mail@163.com 1 year ago
parent
commit
e356bd1fb0
  1. 13
      src/option/basic/basicMaterial.js

13
src/option/basic/basicMaterial.js

@ -144,11 +144,15 @@ export default {
prop: "productCode", prop: "productCode",
type: "input", type: "input",
search: true, search: true,
width: 100,
overHidden: true,
}, },
{ {
label: "物品sku", label: "物品sku",
prop: "sku", prop: "sku",
type: "input", type: "input",
width: 100,
overHidden: true,
}, },
{ {
label: "计量单位", label: "计量单位",
@ -173,6 +177,7 @@ export default {
prop: "name", prop: "name",
type: "input", type: "input",
search: true, search: true,
width: 200,
overHidden: true, overHidden: true,
}, },
// { // {
@ -219,21 +224,29 @@ export default {
label: "长", label: "长",
prop: "extent", prop: "extent",
type: "input", type: "input",
width: 100,
overHidden: true,
}, },
{ {
label: "宽", label: "宽",
prop: "breadth", prop: "breadth",
type: "input", type: "input",
width: 100,
overHidden: true,
}, },
{ {
label: "高度", label: "高度",
prop: "altitude", prop: "altitude",
type: "input", type: "input",
width: 100,
overHidden: true,
}, },
{ {
label: "体积", label: "体积",
prop: "volume", prop: "volume",
type: "input", type: "input",
width: 100,
overHidden: true,
}, },
{ {
label: "重量", label: "重量",

Loading…
Cancel
Save