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;