Commit 8a48b04b authored by GuanHua's avatar GuanHua

fix: 忘记密码检查邮箱接口修改

parent c0f74546
......@@ -47,7 +47,7 @@
cursor: pointer;
&.active {
color: #D32F2F;
color: var(--mall_main_color);
}
}
}
......@@ -147,4 +147,4 @@
}
}
}
}
\ No newline at end of file
}
......@@ -86,7 +86,7 @@ const ShopInfo: React.FC<ShopInfoPropsType> = (props) => {
<div className={styles.shop_info_list}>
<div className={styles.shop_info_list_item}>
<div className={styles.label}>信用积分:</div>
<div className={styles.breif}></div>
<div className={styles.breif}>{shopInfo?.creditPoint || 0}</div>
</div>
<div className={styles.shop_info_list_item}>
<div className={styles.label}>注册资本:</div>
......
......@@ -76,7 +76,7 @@ const GetBack: React.FC = () => {
}
if (PATTERN_MAPS.email.test(fieldState.value)) {
// 校验邮箱格式通过时, 需请求接口判断邮箱是否存在数据库
PublicApi.getMemberRegisterEmailCheck({
PublicApi.postMemberRegisterEmailCheck({
email: fieldState.value
}, { ctlType: 'none', useCache: true, ttl: 60 * 1000 }).then(({ code, data }) => {
if (code === 1000) {
......
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