From 155327ae4fb5166fa8a3231ff758cc3238008763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Tue, 18 Oct 2022 09:54:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=80=9A=E7=9F=A5=E5=85=AC?= =?UTF-8?q?=E5=91=8A=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/notice/index.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/system/notice/index.vue b/src/views/system/notice/index.vue index 93487a1..38bd0b1 100644 --- a/src/views/system/notice/index.vue +++ b/src/views/system/notice/index.vue @@ -71,26 +71,26 @@ - + - + - + {{ dict.dictLabel }} - + @@ -130,12 +130,12 @@ const data = reactive({ pageSize: 10, noticeTitle: undefined, createBy: undefined, - status: undefined, + status: undefined }, rules: { noticeTitle: [{ required: true, message: '公告标题不能为空', trigger: 'blur' }], - noticeType: [{ required: true, message: '公告类型不能为空', trigger: 'change' }], - }, + noticeType: [{ required: true, message: '公告类型不能为空', trigger: 'change' }] + } }) const statusOptions = ref([]) const typeOptions = ref([]) @@ -169,7 +169,7 @@ function reset() { noticeTitle: undefined, noticeType: undefined, noticeContent: undefined, - status: '0', + status: '0' } proxy.resetForm('noticeRef') }