From e0ed82f60fd879ebf7b9af9d7304432a7a365b42 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Tue, 14 Oct 2025 17:39:39 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=94=A8=E6=88=B7=E5=88=97=E8=A1=A8):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E2=80=9C=E5=B0=81=E7=A6=81=E4=B8=80=E5=A4=A9?= =?UTF-8?q?=E2=80=9D=E7=9A=84=E5=8F=82=E6=95=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/data/AccountHanle/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/data/AccountHanle/index.vue b/src/components/data/AccountHanle/index.vue index 6b37a6f..d5ad8ae 100644 --- a/src/components/data/AccountHanle/index.vue +++ b/src/components/data/AccountHanle/index.vue @@ -135,8 +135,8 @@ export default { options: [ { value: "WARNING", name: "警告" }, { value: "FREEZE", name: "冻结" }, - { value: "FREEZE1DAY", name: "冻结1天" }, { value: "ARCHIVE", name: "封禁" }, + { value: "ARCHIVE1DAY", name: "封禁1天" }, { value: "ARCHIVE_DEVICE", name: "封禁+设备" } ] }, @@ -218,7 +218,7 @@ export default { } else { this.form.description = ""; } - if (value === "FREEZE1DAY") { + if (value === "ARCHIVE1DAY") { this.form.days = 1; } else { this.form.days = 3; @@ -232,6 +232,9 @@ export default { return false; } that.form.beApprovalUserId = that.userId; + if (that.form.accountStatusEnum === "ARCHIVE1DAY") { + that.form.accountStatusEnum = "ARCHIVE"; + } that.loading = true; accountHandle(that.form) .then(res => {