Browse Source

失业原因条件为空判断

V1.0
张若晨 2 years ago
parent
commit
520d468164
  1. 13
      src/views/dataBoard/renfang/resi/classNew.vue

13
src/views/dataBoard/renfang/resi/classNew.vue

@ -560,7 +560,7 @@ export default {
this.oldValsss = null;
}, 200);
}
if (query.unemploymentReason || query.unemploymentReason == "") {
if (query.unemploymentReason) {
setTimeout(() => {
const unemploymentReason = this.unemploymentArr.filter(
(item) => query.unemploymentReason == item.label
@ -574,6 +574,17 @@ export default {
this.oldValsss = null;
}, 200);
}
if(query.unemploymentReason === ""){
setTimeout(() => {
this.searchParams = {
employmentWish: null, //
unemploymentReason: null, //
startAge: null,
endAge: null,
};
this.oldValsss = null;
}, 200);
}
}
if (type == "dangyuan") {
if (query.olds) {

Loading…
Cancel
Save