|
@@ -440,6 +440,7 @@
|
|
|
<c-upload
|
|
|
:data="bankOfDepositData"
|
|
|
deleteUrl="/api/blade-client/corpsbank/update"
|
|
|
+ :enumerationValue="77"
|
|
|
/>
|
|
|
|
|
|
</el-form>
|
|
@@ -1564,7 +1565,6 @@ export default {
|
|
|
this.rowHeight = (window.innerHeight - 130) + 'px'
|
|
|
// this.customerContact = customerContact
|
|
|
this.customerContact = await this.getColumnData(this.getColumnName(15), customerContact);
|
|
|
- this.advantageProject = await this.getColumnData(this.getColumnName(16), advantageProject);
|
|
|
this.getWorkDicts("payment_term").then(res => {
|
|
|
this.paymentOption = res.data.data
|
|
|
})
|
|
@@ -1848,11 +1848,11 @@ export default {
|
|
|
return this.$message.error('订货数量不能小于发货数量')
|
|
|
}
|
|
|
}
|
|
|
- this.$refs.crudContact.rowCell(row, index)
|
|
|
+ this.$refs.crudContact.rowCell(row, row.$index)
|
|
|
},
|
|
|
//费用编辑
|
|
|
rowCellTwo(row, index) {
|
|
|
- this.$refs.crudProject.rowCell(row, index)
|
|
|
+ this.$refs.crudProject.rowCell(row, row.$index)
|
|
|
},
|
|
|
//费用新增触发
|
|
|
costIncrease() {
|
|
@@ -2641,7 +2641,7 @@ export default {
|
|
|
type: "success",
|
|
|
message: "操作成功!"
|
|
|
});
|
|
|
- this.goodsShowData.splice(index, 1);
|
|
|
+ this.goodsShowData.splice(row.$index, 1);
|
|
|
if (this.goodsActives == 'goods') {
|
|
|
this.form.presenterIntegral = 0;
|
|
|
this.form.orderAmount = 0;
|
|
@@ -2662,7 +2662,7 @@ export default {
|
|
|
type: "success",
|
|
|
message: "操作成功!"
|
|
|
});
|
|
|
- this.goodsShowData.splice(index, 1);
|
|
|
+ this.goodsShowData.splice(row.$index, 1);
|
|
|
if (this.goodsActives == 'goods') {
|
|
|
this.form.presenterIntegral = 0;
|
|
|
this.form.orderAmount = 0;
|
|
@@ -2762,14 +2762,14 @@ export default {
|
|
|
type: "success",
|
|
|
message: "操作成功!"
|
|
|
});
|
|
|
- this.advantageProjectData.splice(index, 1);
|
|
|
+ this.advantageProjectData.splice(row.$index, 1);
|
|
|
})
|
|
|
} else {
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "操作成功!"
|
|
|
});
|
|
|
- this.advantageProjectData.splice(index, 1);
|
|
|
+ this.advantageProjectData.splice(row.$index, 1);
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -3142,7 +3142,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
removeStagList(row, index) {
|
|
|
- this.goodsListSave.splice(index, 1)
|
|
|
+ this.goodsListSave.splice(row.$index, 1)
|
|
|
},
|
|
|
importStagList(row, index) {
|
|
|
this.goodsListSave.push(row);
|