|
@@ -868,8 +868,9 @@ export default {
|
|
|
if (this.mainForm.isAllDirect) {
|
|
|
this.$set(this.goodsList[index], 'isDirectTransfer', true)
|
|
|
}
|
|
|
- this.goodsList[index].policyConditionId = this.policyConditionId
|
|
|
- this.goodsList[index].policyConditionId = this.policyConditionId || this.goodsList[index].policyConditionId
|
|
|
+ if (this.policyConditionId) {
|
|
|
+ this.$set(this.goodsList[index], 'policyConditionId', this.policyConditionId || this.goodsList[index].policyConditionId)
|
|
|
+ }
|
|
|
if (this.correspondId) {
|
|
|
this.goodsList[index].correspondName = this.correspondName
|
|
|
this.goodsList[index].correspondId = this.correspondId
|