From ca5020cf67b0e61d69dfdbf0ee2053bcfd7bc76f Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Mon, 3 Nov 2025 11:40:42 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=82=80=E8=AF=B7=E7=A0=81=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2):=20=E4=BF=AE=E5=A4=8D=E6=9C=AA=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E5=88=AB=E4=BA=BA=E8=B7=B3=E8=BD=AC=E5=88=B0=E8=87=AA=E5=B7=B1?= =?UTF-8?q?=E7=A7=81=E8=81=8A=E9=A1=B5=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Invitation/InvitationToRegister.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/Invitation/InvitationToRegister.vue b/src/views/Invitation/InvitationToRegister.vue index 008b2a0..49f244f 100644 --- a/src/views/Invitation/InvitationToRegister.vue +++ b/src/views/Invitation/InvitationToRegister.vue @@ -7,7 +7,7 @@
@@ -488,6 +488,10 @@ const inviteAwardPool = ref({}) const showModule = ref('list') //显示模块 +const showBindingBt = computed(() => { + return !myInviter.myInfo?.expired && !myInviter.inviterInfo +}) + // 展示遮罩层 const maskLayerShow = computed(() => { return helpInfoShow.value || enterCodeShow.value @@ -545,7 +549,7 @@ const apiGetMyInviteCode = async () => { const apiGetMyInviter = async () => { const resInviter = await getMyInviter() if (resInviter.status && resInviter.body) { - myInviter.value = resInviter.body.myInfo || {} + myInviter.value = resInviter.body || {} } }