|
@@ -151,6 +151,7 @@ export default {
|
|
let res = {};
|
|
let res = {};
|
|
if (this.user.type === '0' || this.user.type === '1') {
|
|
if (this.user.type === '0' || this.user.type === '1') {
|
|
res = await this.query({ skip, limit, ...info });
|
|
res = await this.query({ skip, limit, ...info });
|
|
|
|
+ res.data = res.data.filter(item => item.status != '0');
|
|
}
|
|
}
|
|
if (this.user.type === '3') {
|
|
if (this.user.type === '3') {
|
|
res = await this.query({ skip, limit, uid: this.user.uid });
|
|
res = await this.query({ skip, limit, uid: this.user.uid });
|