|
@@ -514,6 +514,7 @@ export default {
|
|
|
selectedObj: {},
|
|
selectedObj: {},
|
|
|
ordernoObj: {
|
|
ordernoObj: {
|
|
|
title: "订单编号/项目名称选择",
|
|
title: "订单编号/项目名称选择",
|
|
|
|
|
+ currentSearchValue: "",
|
|
|
list: [],
|
|
list: [],
|
|
|
hasChild: false,
|
|
hasChild: false,
|
|
|
},
|
|
},
|
|
@@ -525,6 +526,7 @@ export default {
|
|
|
rownoObj: {},
|
|
rownoObj: {},
|
|
|
currencySelectedObj: {
|
|
currencySelectedObj: {
|
|
|
title: "订单编号/项目名称选择",
|
|
title: "订单编号/项目名称选择",
|
|
|
|
|
+ currentSearchValue: "",
|
|
|
type: 1,
|
|
type: 1,
|
|
|
list: [],
|
|
list: [],
|
|
|
},
|
|
},
|
|
@@ -574,6 +576,7 @@ export default {
|
|
|
return this.$Message.warning("请先选择项目");
|
|
return this.$Message.warning("请先选择项目");
|
|
|
}
|
|
}
|
|
|
this.currentSearchValue = "";
|
|
this.currentSearchValue = "";
|
|
|
|
|
+ this.currentSearchValue = obj.currentSearchValue;
|
|
|
this.currencySelectedObj = obj;
|
|
this.currencySelectedObj = obj;
|
|
|
this.selectionModal = true;
|
|
this.selectionModal = true;
|
|
|
this.currencySelectedObj.type = type;
|
|
this.currencySelectedObj.type = type;
|
|
@@ -636,11 +639,13 @@ export default {
|
|
|
this.selectionModal = false;
|
|
this.selectionModal = false;
|
|
|
this.selectionDetailModal = true;
|
|
this.selectionDetailModal = true;
|
|
|
this.chooseDetailUrlNo = obj;
|
|
this.chooseDetailUrlNo = obj;
|
|
|
|
|
+ this.currentSearchValue = this.rownoObj.currentSearchValue;
|
|
|
this.contentData = [];
|
|
this.contentData = [];
|
|
|
this.total = 0;
|
|
this.total = 0;
|
|
|
} else {
|
|
} else {
|
|
|
// 订单号
|
|
// 订单号
|
|
|
this.chooseOrderNo = obj;
|
|
this.chooseOrderNo = obj;
|
|
|
|
|
+ this.currentSearchValue = this.ordernoObj.currentSearchValue;
|
|
|
}
|
|
}
|
|
|
if (row.type == 1) {
|
|
if (row.type == 1) {
|
|
|
this.handleSelectionComfirm(this.currencySelectedObj);
|
|
this.handleSelectionComfirm(this.currencySelectedObj);
|