From f4a50cd8542105595da0dd201b4d88cc6746793c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B0=E9=A6=99=E7=90=AA?= <624506849@qq.com> Date: Wed, 9 Sep 2026 15:21:07 +0800 Subject: [PATCH] =?UTF-8?q?refactor(distribution):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=88=86=E9=94=80=E8=B5=84=E6=A0=BC=E6=8F=90=E7=A4=BA=E4=B8=8E?= =?UTF-8?q?=E7=94=B3=E8=AF=89=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改分销资格被清退的提示信息,明确只可通过后台恢复,不再提供申诉功能 - 移除申诉相关的逻辑与按钮,简化用户交互 - 调整状态管理,去除不再使用的申诉状态 --- .../pages/home/memberCenter/Distribution.vue | 28 ++----------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/buyer/src/pages/home/memberCenter/Distribution.vue b/buyer/src/pages/home/memberCenter/Distribution.vue index b2b7eabe..c4a913b6 100644 --- a/buyer/src/pages/home/memberCenter/Distribution.vue +++ b/buyer/src/pages/home/memberCenter/Distribution.vue @@ -178,21 +178,9 @@
@@ -449,16 +437,6 @@ export default { if (res.success) this.logData = res.result; }); }, - //申诉 - repaying(){ - submitRecruitApplication({ agreementAccepted: true }).then((res) => { - this.applyLoading = false; - if (res.success) { - Message.success("申诉已提交,请等待管理员审核"); - // this.status = 1; - } - }); - }, distribution() { // 获取分销员信息 distribution() @@ -473,8 +451,6 @@ export default { this.status = 0; } else if (type === "RETREAT") { this.status = 4; - } else if (type === "APPEAL") { - this.status = 5; } else { this.status = 1; }