|
|
@@ -553,9 +553,18 @@
|
|
|
} else {
|
|
|
finalValue = singleDotValue;
|
|
|
}
|
|
|
- return (row.outboundNum = finalValue);
|
|
|
+ row.outboundNum = finalValue;
|
|
|
+ const currentIndex = this.selectionList.findIndex(item => item.id === row.id)
|
|
|
+ if(currentIndex > -1) {
|
|
|
+ this.$set(this.selectionList, currentIndex, row);
|
|
|
+ }
|
|
|
+ return
|
|
|
} else {
|
|
|
row.outboundNum = row.measureQuantity;
|
|
|
+ const currentIndex = this.selectionList.findIndex(item => item.id === row.id)
|
|
|
+ if(currentIndex > -1) {
|
|
|
+ this.$set(this.selectionList, currentIndex, row);
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
|