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
+