|
@@ -71,7 +71,15 @@ export default {
|
|
|
if (three) this.$set(this, `threeList`, three);
|
|
|
}
|
|
|
} else {
|
|
|
- console.log('机构');
|
|
|
+ const res = await this.userquery({ code: this.user.code, ...info });
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
+ let one = res.data.filter(i => i.status == '0' && i.isdel == '0');
|
|
|
+ if (one) this.$set(this, `oneList`, one);
|
|
|
+ let two = res.data.filter(i => i.status == '1' && i.isdel == '0');
|
|
|
+ if (two) this.$set(this, `twoList`, two);
|
|
|
+ let three = res.data.filter(i => i.status == '2' && i.isdel == '0');
|
|
|
+ if (three) this.$set(this, `threeList`, three);
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
// 审核用户。查看用户
|