From 78612f0397e173f59f54898547bd6734c2c193b0 Mon Sep 17 00:00:00 2001 From: "liang.chao" <1360241448@qq.com> Date: Mon, 18 Nov 2024 13:40:08 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E5=BA=86=E6=9C=BA=E5=85=B7=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E9=A1=B9=E5=8A=9F=E8=83=BD=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/config/index.vue | 42 ++++++++++++++++++++++++++++--- 1 file changed, 38 insertions(+), 4 deletions(-) diff --git a/src/views/system/config/index.vue b/src/views/system/config/index.vue index 7b3c305..c928448 100644 --- a/src/views/system/config/index.vue +++ b/src/views/system/config/index.vue @@ -147,7 +147,7 @@ @pagination="getList" /> - + @@ -177,6 +177,37 @@ 取 消 + + + + + + + + + + + + + + + + {{dict.label}} + + + + + + + + @@ -207,6 +238,8 @@ export default { title: "", // 是否显示弹出层 open: false, + // 是否显示弹出层 + open1: false, // 日期范围 dateRange: [], // 查询参数 @@ -255,6 +288,7 @@ export default { // 取消按钮 cancel() { this.open = false; + this.open1 = false; this.reset(); }, // 表单重置 @@ -298,7 +332,7 @@ export default { const configId = row.configId || this.ids getConfig(configId).then(response => { this.form = response.data; - this.open = true; + this.open1 = true; this.title = "修改参数"; }); }, @@ -309,7 +343,7 @@ export default { if (this.form.configId != undefined) { updateConfig(this.form).then(response => { this.$modal.msgSuccess("修改成功"); - this.open = false; + this.open1 = false; this.getList(); }); } else { @@ -366,4 +400,4 @@ export default { } } }; - \ No newline at end of file +