From b233407020d3423ff4673f05d44c4efa77757508 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, 3 Sep 2025 18:16:35 +0800 Subject: [PATCH] =?UTF-8?q?refactor(dealer):=20=E6=9B=B4=E6=96=B0=E4=B8=9A?= =?UTF-8?q?=E5=8A=A1=E5=91=98=E7=9B=B8=E5=85=B3=E9=A1=B5=E9=9D=A2=E6=96=87?= =?UTF-8?q?=E6=A1=88=E5=92=8C=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改申请页面标题为"申请成为业务员" - 更新团队页面空状态描述和按钮文案 - 优化团队页面整体布局结构 --- src/dealer/apply/add.config.ts | 2 +- src/dealer/team/index.tsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/dealer/apply/add.config.ts b/src/dealer/apply/add.config.ts index 8c40d08..02d2f80 100644 --- a/src/dealer/apply/add.config.ts +++ b/src/dealer/apply/add.config.ts @@ -1,4 +1,4 @@ export default definePageConfig({ - navigationBarTitleText: '注册成为VIP', + navigationBarTitleText: '申请成为业务员', navigationBarTextStyle: 'black' }) diff --git a/src/dealer/team/index.tsx b/src/dealer/team/index.tsx index e292aab..68130d8 100644 --- a/src/dealer/team/index.tsx +++ b/src/dealer/team/index.tsx @@ -179,28 +179,28 @@ const DealerTeam: React.FC = () => { if (!dealerUser) { return ( - navTo(`/dealer/apply/add`,true)}]} + }} actions={[{ text: '立即申请', onClick: () => navTo(`/dealer/apply/add`,true)}]} /> ) } return ( - + <> {teamMembers.length > 0 ? ( renderOverview() ) : ( - )} navTo(`/dealer/qrcode/index`, true)}/> - + ) }