|
|
@@ -51,11 +51,11 @@
|
|
|
<el-form-item label="部门" prop="departmentNo">
|
|
|
<DepartMentSelect
|
|
|
ref="departMentSelect"
|
|
|
- :disabled="formData.businessType ? false : true"
|
|
|
v-model="formData.departmentNo"
|
|
|
+ :disabled="formData.businessType ? false : true"
|
|
|
placeholder="请选择部门"
|
|
|
- @change="selectDepart"
|
|
|
clearable
|
|
|
+ @change="selectDepart"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -206,7 +206,7 @@
|
|
|
label="物料编码"
|
|
|
align="center"
|
|
|
prop="materialNo"
|
|
|
- width="160"
|
|
|
+ width="200"
|
|
|
show-overflow-tooltip
|
|
|
>
|
|
|
<template v-slot="scope">
|
|
|
@@ -235,7 +235,7 @@
|
|
|
label="物料名称"
|
|
|
align="center"
|
|
|
prop="materialName"
|
|
|
- width="150"
|
|
|
+ width="200"
|
|
|
show-overflow-tooltip
|
|
|
>
|
|
|
<template v-slot="scope">
|
|
|
@@ -275,9 +275,10 @@
|
|
|
show-overflow-tooltip
|
|
|
/>
|
|
|
<el-table-column
|
|
|
- label="本次出货数量"
|
|
|
+ label="本次出入数量"
|
|
|
align="center"
|
|
|
prop="nowDeliveredQty"
|
|
|
+ width="160"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<el-input
|
|
|
@@ -287,15 +288,15 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- label="已出货数量"
|
|
|
+ label="已出入数量"
|
|
|
align="center"
|
|
|
- prop="deliveredQty"
|
|
|
+ prop="completedQty"
|
|
|
width="120"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
- label="应出货数量"
|
|
|
+ label="应出入数量"
|
|
|
align="center"
|
|
|
- prop="shouldDeliveredQty"
|
|
|
+ prop="planQty"
|
|
|
width="120"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
@@ -311,7 +312,7 @@
|
|
|
width="150"
|
|
|
show-overflow-tooltip
|
|
|
/>
|
|
|
- <el-table-column label="行备注" align="center" prop="remark">
|
|
|
+ <el-table-column label="行备注" align="center" prop="remark" width="200">
|
|
|
<template slot-scope="scope">
|
|
|
<el-input v-model="scope.row.remark" />
|
|
|
</template>
|
|
|
@@ -726,7 +727,7 @@ export default {
|
|
|
this.resetForm("formRef");
|
|
|
},
|
|
|
deliverChange(val) {
|
|
|
- // 这里可以写“本次出货数量”变化后的校验或计算逻辑
|
|
|
+ // 这里可以写“本次出入数量”变化后的校验或计算逻辑
|
|
|
console.log("deliverChange", val);
|
|
|
},
|
|
|
},
|