From 1d77e9e77f625b74223e35d19e0e9491057ba8b1 Mon Sep 17 00:00:00 2001 From: smallchill Date: Tue, 29 Oct 2019 14:25:55 +0800 Subject: [PATCH] =?UTF-8?q?:zap:=20=E5=AD=97=E5=85=B8=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B0=81=E5=AD=98=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/dept.vue | 1 - src/views/system/dict.vue | 28 +++++++++++++++++++++++++++- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/src/views/system/dept.vue b/src/views/system/dept.vue index d89a0a1..582ec54 100644 --- a/src/views/system/dept.vue +++ b/src/views/system/dept.vue @@ -149,7 +149,6 @@ trigger: "blur" }] }, - { label: "备注", prop: "remark", diff --git a/src/views/system/dict.vue b/src/views/system/dict.vue index 9f16530..c371673 100644 --- a/src/views/system/dict.vue +++ b/src/views/system/dict.vue @@ -26,6 +26,10 @@ @click="handleDelete">删 除 + @@ -60,6 +64,8 @@ index: true, selection: true, viewBtn: true, + dialogWidth: 880, + dialogHeight: 320, column: [ { label: "字典编号", @@ -117,11 +123,31 @@ trigger: "blur" }] }, + { + label: "是否封存", + prop: "isSealed", + type: 'select', + dicData: [ + { + label: "否", + value: 0 + }, + { + label: "是", + value: 1 + } + ], + slot: true, + rules: [{ + required: true, + message: "请选择是否封存", + trigger: "blur" + }] + }, { label: "字典备注", prop: "remark", search: true, - span: 24, hide: true, }, ]