1
This commit is contained in:
parent
528ed31e74
commit
440664eec2
@ -2365,6 +2365,29 @@ export default {
|
||||
};
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
"addForm1.regionId": {
|
||||
handler(newVal) {
|
||||
console.log(newVal);
|
||||
if(newVal.length == 0){
|
||||
this.reviewList = [];
|
||||
}else {
|
||||
this.getReviewPeopleList(this.addForm1.regionId);
|
||||
}
|
||||
},
|
||||
deep:true,
|
||||
},
|
||||
"addForm2.regionId": {
|
||||
handler(newVal) {
|
||||
if(newVal.length == 0){
|
||||
this.reviewList = [];
|
||||
}else {
|
||||
this.getReviewPeopleList(newVal);
|
||||
}
|
||||
},
|
||||
deep:true,
|
||||
}
|
||||
},
|
||||
mounted() {},
|
||||
methods: {
|
||||
backQuestion(obj) {
|
||||
|
||||
@ -2347,6 +2347,29 @@ export default {
|
||||
};
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
"addForm1.regionId": {
|
||||
handler(newVal) {
|
||||
console.log(newVal);
|
||||
if(newVal.length == 0){
|
||||
this.reviewList = [];
|
||||
}else {
|
||||
this.getReviewPeopleList(newVal);
|
||||
}
|
||||
},
|
||||
deep:true,
|
||||
},
|
||||
"addForm2.regionId": {
|
||||
handler(newVal) {
|
||||
if(newVal.length == 0){
|
||||
this.reviewList = [];
|
||||
}else {
|
||||
this.getReviewPeopleList(newVal);
|
||||
}
|
||||
},
|
||||
deep:true,
|
||||
}
|
||||
},
|
||||
mounted() {},
|
||||
methods: {
|
||||
backQuestion(obj) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user