|
|
|
@ -648,7 +648,6 @@ export default {
|
|
|
|
|
if (this.editQuery.isDateBy == 1) {
|
|
|
|
|
this.editQuery.recentDateTime = this.editQuery.recentDateTime / 24;
|
|
|
|
|
}
|
|
|
|
|
console.log(this.editQuery)
|
|
|
|
|
this.getTreeselect();
|
|
|
|
|
let ttquery = {
|
|
|
|
|
id: this.relevanceEdit.id
|
|
|
|
@ -785,12 +784,28 @@ export default {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.sysList = response.data.list || [];
|
|
|
|
|
this.resetThirdId();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.sysList = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
resetThirdId() {
|
|
|
|
|
this.sysList.forEach((item) => {
|
|
|
|
|
if (item.sysId === "thirdId") {
|
|
|
|
|
this.editQuery.thirdId = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId1") {
|
|
|
|
|
this.editQuery.thirdId1 = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId2") {
|
|
|
|
|
this.editQuery.thirdId2 = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId3") {
|
|
|
|
|
this.editQuery.thirdId3 = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId4") {
|
|
|
|
|
this.editQuery.thirdId4 = item.thirdId;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getDetailList(detailQuery) {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
filterByUuid(detailQuery)
|
|
|
|
|