|
|
@@ -86,13 +86,19 @@
|
|
|
prop="categoryMsg.totalWeight"
|
|
|
><el-input
|
|
|
readonly
|
|
|
- class="w100"
|
|
|
- :value="
|
|
|
- (categoryMsg.totalWeight =
|
|
|
- categoryMsg.number * (infoData.productUnitWeight || 1))
|
|
|
- "
|
|
|
+ class="w100"
|
|
|
+ :value="
|
|
|
+ (categoryMsg.totalWeight =
|
|
|
+ categoryMsg.number === ''
|
|
|
+ ? ''
|
|
|
+ : categoryMsg.number * (infoData.productUnitWeight || 1))
|
|
|
+ "
|
|
|
clearable
|
|
|
></el-input>
|
|
|
+ <!-- :value="
|
|
|
+ (categoryMsg.totalWeight =
|
|
|
+ categoryMsg.number * (infoData.productUnitWeight || 1))
|
|
|
+ " -->
|
|
|
</el-form-item>
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item label="舟皿编号/名称" :span="2"
|