From ed5ef3fb1944853fb2e9912bf177f4e4cdac850c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Wed, 28 Jan 2026 10:22:14 +0800 Subject: [PATCH] =?UTF-8?q?feat(register):=20=E7=A7=BB=E9=99=A4=E6=B3=A8?= =?UTF-8?q?=E5=86=8C=E9=A1=B5=E9=9D=A2=E5=B9=B6=E8=B0=83=E6=95=B4=E7=BB=8F?= =?UTF-8?q?=E9=94=80=E5=95=86=E7=94=B3=E8=AF=B7=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 删除 passport/register.tsx 和 passport/register.config.ts 注册相关文件 - 从 app.config.ts 中移除 register 页面配置 - 将经销商申请页面标题从"邀请注册"改为"注册会员" - 注释掉经销商申请表单中的邀请人ID字段 - 更新经销商申请页面导航栏标题文本 --- src/app.config.ts | 1 - src/dealer/apply/add.config.ts | 2 +- src/dealer/apply/add.tsx | 6 ++--- src/passport/register.config.ts | 4 --- src/passport/register.tsx | 47 --------------------------------- 5 files changed, 4 insertions(+), 56 deletions(-) delete mode 100644 src/passport/register.config.ts delete mode 100644 src/passport/register.tsx diff --git a/src/app.config.ts b/src/app.config.ts index 1b2079d..100a873 100644 --- a/src/app.config.ts +++ b/src/app.config.ts @@ -11,7 +11,6 @@ export default { "root": "passport", "pages": [ "login", - "register", "forget", "setting", "agreement", diff --git a/src/dealer/apply/add.config.ts b/src/dealer/apply/add.config.ts index ac37521..72f9e1e 100644 --- a/src/dealer/apply/add.config.ts +++ b/src/dealer/apply/add.config.ts @@ -1,4 +1,4 @@ export default definePageConfig({ - navigationBarTitleText: '邀请注册', + navigationBarTitleText: '注册会员', navigationBarTextStyle: 'black' }) diff --git a/src/dealer/apply/add.tsx b/src/dealer/apply/add.tsx index 1e9afca..24dcfc3 100644 --- a/src/dealer/apply/add.tsx +++ b/src/dealer/apply/add.tsx @@ -435,9 +435,9 @@ const AddUserAddress = () => { > - - - + {/**/} + {/* */} + {/**/} { - const [isAgree, setIsAgree] = useState(false) - const reload = () => { - Taro.hideTabBar() - } - - useEffect(() => { - reload() - }, []) - - return ( - <> -
-
免费试用14天,快速上手独立站
-
建站、选品、营销、支付、物流,全部搞定
-
- WebSoft为您提供独立站的解决方案,提供专业、高效、安全的运营服务。 -
-
- -
-
- -
-
- -
-
- -
-
- setIsAgree(!isAgree)}> - setIsAgree(!isAgree)}>勾选表示您已阅读并同意 - Taro.navigateTo({url: '/passport/agreement'})} className={'text-blue-600'}>《服务协议及隐私政策》 -
-
-
- 已有账号? Taro.navigateBack()}>返回登录 -
- - ) -} -export default Register