From 309066bfa8c2b28d1b60f05b8a3ebb9984882e28 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Tue, 14 Oct 2025 17:21:25 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=94=A8=E6=88=B7=E5=88=97=E8=A1=A8):=20?= =?UTF-8?q?=E5=AF=B9=E8=B4=A6=E5=8F=B7=E5=A4=84=E7=90=86=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E2=80=9C=E5=B0=81=E7=A6=81=E4=B8=80=E5=A4=A9=E2=80=9D=E7=9A=84?= =?UTF-8?q?=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/data/AccountHanle/index.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/data/AccountHanle/index.vue b/src/components/data/AccountHanle/index.vue index fa017b8..6b37a6f 100644 --- a/src/components/data/AccountHanle/index.vue +++ b/src/components/data/AccountHanle/index.vue @@ -135,6 +135,7 @@ export default { options: [ { value: "WARNING", name: "警告" }, { value: "FREEZE", name: "冻结" }, + { value: "FREEZE1DAY", name: "冻结1天" }, { value: "ARCHIVE", name: "封禁" }, { value: "ARCHIVE_DEVICE", name: "封禁+设备" } ] @@ -217,6 +218,11 @@ export default { } else { this.form.description = ""; } + if (value === "FREEZE1DAY") { + this.form.days = 1; + } else { + this.form.days = 3; + } }, submit() { const that = this;