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, }, ]