diff --git a/server/src/module/pc/controller/option/card.ts b/server/src/module/pc/controller/option/card.ts index 47ff15a..d196a93 100644 --- a/server/src/module/pc/controller/option/card.ts +++ b/server/src/module/pc/controller/option/card.ts @@ -76,7 +76,6 @@ const PcOptionCardAction = { const owerInfo = await ctx.model .from('ejyy_wechat_mp_user') .where('id', userId) - .andWhere('status', NORMAL_STATUS) .andWhere('intact', TRUE) .select('id', 'real_name', 'phone', 'avatar_url', 'gender') .first(); diff --git a/server/src/module/pc/controller/option/ower.ts b/server/src/module/pc/controller/option/ower.ts index cd25d25..129e9d9 100644 --- a/server/src/module/pc/controller/option/ower.ts +++ b/server/src/module/pc/controller/option/ower.ts @@ -59,7 +59,6 @@ const PcOptionOwerAction = { const owerInfo = await ctx.model .from('ejyy_wechat_mp_user') .where('phone', phone) - .andWhere('status', NORMAL_STATUS) .andWhere('intact', TRUE) .select('id', 'real_name', 'phone', 'avatar_url') .first();