|
@ -595,7 +595,11 @@ const blurThree = (oneRow, twoRow, thereeRow) => { |
|
|
// 获取单位 |
|
|
// 获取单位 |
|
|
const uomLabel = (row) => { |
|
|
const uomLabel = (row) => { |
|
|
const obj = getStrDictOptions(DICT_TYPE.UOM).find((item) => item.value == row.uom) |
|
|
const obj = getStrDictOptions(DICT_TYPE.UOM).find((item) => item.value == row.uom) |
|
|
return obj.label |
|
|
if (obj) { |
|
|
|
|
|
return obj.label |
|
|
|
|
|
} else { |
|
|
|
|
|
return '' |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// 传递给父类 |
|
|
// 传递给父类 |
|
|