提交 675bd9ef 作者: 方治民

chore: 调整审核模式校验(从未登录过或登录账号为审核特殊账号)时不触发更新

上级 d85bbbd0
......@@ -54,10 +54,13 @@ export const useUserStore = defineStore({
return null
},
/**
* @returns 是否为审核账号
* @returns 是否为审核账号(新增:没有登录过也算)
*/
isAuditMode(): boolean {
return ['10000000001', '13000000000', '13312345678'].includes(this.getUserInfo?.phone)
return (
['10000000001', '13000000000', '13012345678'].includes(this.getUserInfo?.phone) ||
!this.getUserInfo?.phone
)
},
},
actions: {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论