mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-09-21 12:22:03 +08:00
refactor(distribution): 更新分销资格提示与申诉逻辑
- 修改分销资格被清退的提示信息,明确只可通过后台恢复,不再提供申诉功能 - 移除申诉相关的逻辑与按钮,简化用户交互 - 调整状态管理,去除不再使用的申诉状态
This commit is contained in:
@@ -178,21 +178,9 @@
|
|||||||
<div v-if="status === 3">
|
<div v-if="status === 3">
|
||||||
<el-alert type="danger" title="分销功能暂未开启" />
|
<el-alert type="danger" title="分销功能暂未开启" />
|
||||||
</div>
|
</div>
|
||||||
<!-- 分销资格被清退 -->
|
<!-- 分销资格被清退:只能后台恢复,不提供申诉 -->
|
||||||
<div v-if="status === 4">
|
<div v-if="status === 4">
|
||||||
<el-alert type="danger">
|
<el-alert type="danger" title="您的分销资格已被清退。请联系管理员!" :closable="false" />
|
||||||
您的分销资格已被清退。请联系管理员或进行申诉
|
|
||||||
|
|
||||||
<el-button style="margin-left: 50px;" type="warning" @click="repaying">申诉</el-button>
|
|
||||||
</el-alert>
|
|
||||||
</div>
|
|
||||||
<!-- 分销申诉审核 -->
|
|
||||||
<div v-if="status === 5">
|
|
||||||
<el-alert
|
|
||||||
type="success"
|
|
||||||
title="您提交的申诉正在审核"
|
|
||||||
description="提交认证申请后,工作人员将在三个工作日进行核对完成审核"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<el-dialog v-model="withdrawApplyModal" width="530">
|
<el-dialog v-model="withdrawApplyModal" width="530">
|
||||||
<template #header><p>
|
<template #header><p>
|
||||||
@@ -449,16 +437,6 @@ export default {
|
|||||||
if (res.success) this.logData = res.result;
|
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() {
|
||||||
// 获取分销员信息
|
// 获取分销员信息
|
||||||
distribution()
|
distribution()
|
||||||
@@ -473,8 +451,6 @@ export default {
|
|||||||
this.status = 0;
|
this.status = 0;
|
||||||
} else if (type === "RETREAT") {
|
} else if (type === "RETREAT") {
|
||||||
this.status = 4;
|
this.status = 4;
|
||||||
} else if (type === "APPEAL") {
|
|
||||||
this.status = 5;
|
|
||||||
} else {
|
} else {
|
||||||
this.status = 1;
|
this.status = 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user