wangliang_wd

feat:优化找回密码

... ... @@ -148,7 +148,7 @@ export class LoginModel {
HttpRequest.post<ResponseDTO<CheckVerifyBean>>(HttpUrlUtils.getCheckVerifyCodeUrl(), bean).then((data: ResponseDTO<CheckVerifyBean>) => {
Logger.debug("LoginViewModel:success2 ", data.message)
if (!data || !data.data) {
fail("数据为空")
fail(data.message?data.message:"数据为空")
return
}
if (data.code != 0) {
... ...