Commit 6a53081c authored by GuanHua's avatar GuanHua

fix: 忘记密码页面问题

parent 5a84ba33
......@@ -77,7 +77,7 @@ const GetBack: React.FC = () => {
if (PATTERN_MAPS.email.test(fieldState.value)) {
// 校验邮箱格式通过时, 需请求接口判断邮箱是否存在数据库
PublicApi.getMemberRegisterEmailCheck({
email: encodeURI(fieldState.value)
email: fieldState.value
}, { ctlType: 'none', useCache: true, ttl: 60 * 1000 }).then(({ code, data }) => {
if (code === 1000) {
setFieldState('account', state => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment