|
@@ -615,7 +615,7 @@ export default {
|
|
|
currentChooseNumberUsed: "",
|
|
currentChooseNumberUsed: "",
|
|
|
matchedList: [],
|
|
matchedList: [],
|
|
|
matchedDetailList: [],
|
|
matchedDetailList: [],
|
|
|
- matchedTimeList: [],
|
|
|
|
|
|
|
+ matchedTimeList: "",
|
|
|
unmatchedSheetTableColumns: [
|
|
unmatchedSheetTableColumns: [
|
|
|
{
|
|
{
|
|
|
title: "序号",
|
|
title: "序号",
|
|
@@ -740,7 +740,7 @@ export default {
|
|
|
], //深化信息表头
|
|
], //深化信息表头
|
|
|
unmatchedRoomTableColumnsModal: [],
|
|
unmatchedRoomTableColumnsModal: [],
|
|
|
unmatchedSelectedList: [],
|
|
unmatchedSelectedList: [],
|
|
|
- matchedSelectedList: [],
|
|
|
|
|
|
|
+ matchedSelectedList: "",
|
|
|
showHandingMatchModal: false,
|
|
showHandingMatchModal: false,
|
|
|
isMatchedSelectAll: false,
|
|
isMatchedSelectAll: false,
|
|
|
matchedReopenTag: "",
|
|
matchedReopenTag: "",
|
|
@@ -894,6 +894,7 @@ export default {
|
|
|
return sums;
|
|
return sums;
|
|
|
},
|
|
},
|
|
|
handleMatchedSet(row, index, type) {
|
|
handleMatchedSet(row, index, type) {
|
|
|
|
|
+ console.log(this.matchedSelectedList);
|
|
|
if (this.matchedSelectedList.length == 0) {
|
|
if (this.matchedSelectedList.length == 0) {
|
|
|
return this.$Message.warning("请选择");
|
|
return this.$Message.warning("请选择");
|
|
|
}
|
|
}
|
|
@@ -905,7 +906,7 @@ export default {
|
|
|
})
|
|
})
|
|
|
.then((res) => {
|
|
.then((res) => {
|
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
|
- this.matchedSelectedList = [];
|
|
|
|
|
|
|
+ this.matchedSelectedList = "";
|
|
|
this.matchedTimeList = [];
|
|
this.matchedTimeList = [];
|
|
|
this.handleMatchedListInit();
|
|
this.handleMatchedListInit();
|
|
|
this.isMatchedSelectAll = false
|
|
this.isMatchedSelectAll = false
|
|
@@ -1426,7 +1427,8 @@ export default {
|
|
|
if (this.isMatchedSelectAll) {
|
|
if (this.isMatchedSelectAll) {
|
|
|
e.del_isSelect = true;
|
|
e.del_isSelect = true;
|
|
|
e.isSelect = true;
|
|
e.isSelect = true;
|
|
|
- this.matchedSelectedList.push(e.order_no);
|
|
|
|
|
|
|
+ // this.matchedSelectedList.push(e.order_no);
|
|
|
|
|
+ this.matchedSelectedList = e.order_no
|
|
|
this.matchedTimeList.push(e.crt_time);
|
|
this.matchedTimeList.push(e.crt_time);
|
|
|
} else {
|
|
} else {
|
|
|
e.del_isSelect = false;
|
|
e.del_isSelect = false;
|
|
@@ -1437,11 +1439,12 @@ export default {
|
|
|
handleMatchedSelect(row, e) {
|
|
handleMatchedSelect(row, e) {
|
|
|
row.isSelect = e;
|
|
row.isSelect = e;
|
|
|
let flag = true;
|
|
let flag = true;
|
|
|
- this.matchedSelectedList = [];
|
|
|
|
|
|
|
+ this.matchedSelectedList = "";
|
|
|
this.matchedList.map((v) => {
|
|
this.matchedList.map((v) => {
|
|
|
if (v.product_state == 0) {
|
|
if (v.product_state == 0) {
|
|
|
if (v.isSelect) {
|
|
if (v.isSelect) {
|
|
|
- this.matchedSelectedList.push(v.id);
|
|
|
|
|
|
|
+ // this.matchedSelectedList.push(v.id);
|
|
|
|
|
+ this.matchedSelectedList = v.id
|
|
|
} else {
|
|
} else {
|
|
|
flag = false;
|
|
flag = false;
|
|
|
}
|
|
}
|