|
|
|
@ -153,6 +153,11 @@ |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<el-row :gutter="20"> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="高度(mm)" prop="height" class="form-item-vertical"> |
|
|
|
<el-input v-model="otherInboundForm.height"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="失效日期" class="form-item-vertical"> |
|
|
|
<el-date-picker |
|
|
|
@ -435,7 +440,8 @@ export default { |
|
|
|
packageCount: 1, |
|
|
|
manufactureDate: '', |
|
|
|
expiredDate: '', |
|
|
|
remark: '' |
|
|
|
remark: '', |
|
|
|
height: '', |
|
|
|
} |
|
|
|
this.$nextTick(() => { |
|
|
|
if (this.$refs['otherInboundForm']) { |
|
|
|
@ -485,7 +491,8 @@ export default { |
|
|
|
packageCount: parseInt(this.otherInboundForm.packageCount), |
|
|
|
manufactureDate: this.otherInboundForm.manufactureDate || null, |
|
|
|
expiredDate: this.otherInboundForm.expiredDate || null, |
|
|
|
remark: this.otherInboundForm.remark |
|
|
|
remark: this.otherInboundForm.remark, |
|
|
|
height: this.otherInboundForm.height || null, |
|
|
|
} |
|
|
|
|
|
|
|
// 创建HandlingUnit |
|
|
|
|