From 9a19ae9332843e20621caccbfb1853c469ed599b Mon Sep 17 00:00:00 2001
From: gexinzhineng/gxzn27 <1348660141@qq.com>
Date: Fri, 31 Mar 2023 15:43:14 +0800
Subject: [PATCH] =?UTF-8?q?notice=E6=9A=82=E4=B8=8D=E5=9C=A8master?=
=?UTF-8?q?=E4=B8=8A=E4=BF=AE=E6=94=B9=20dev=E4=B8=8A=E5=B7=B2=E4=BF=AE?=
=?UTF-8?q?=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/notice/form.vue | 131 ------------
src/views/system/notice/index.vue | 271 ++++++++++++-------------
src/views/system/notice/notice.data.ts | 59 ++++++
3 files changed, 189 insertions(+), 272 deletions(-)
delete mode 100644 src/views/system/notice/form.vue
create mode 100644 src/views/system/notice/notice.data.ts
diff --git a/src/views/system/notice/form.vue b/src/views/system/notice/form.vue
deleted file mode 100644
index b8a49586c..000000000
--- a/src/views/system/notice/form.vue
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
diff --git a/src/views/system/notice/index.vue b/src/views/system/notice/index.vue
index 8add0eaba..aceadbbaa 100644
--- a/src/views/system/notice/index.vue
+++ b/src/views/system/notice/index.vue
@@ -1,159 +1,148 @@
-
-
-
-
-
-
-
-
-
-
-
-
- 搜索
- 重置
-
- 新增
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 编辑
-
-
- 删除
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/src/views/system/notice/notice.data.ts b/src/views/system/notice/notice.data.ts
new file mode 100644
index 000000000..7a72a7239
--- /dev/null
+++ b/src/views/system/notice/notice.data.ts
@@ -0,0 +1,59 @@
+import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
+const { t } = useI18n() // 国际化
+
+// 表单校验
+export const rules = reactive({
+ title: [required],
+ type: [required]
+})
+
+// CrudSchema
+const crudSchemas = reactive({
+ primaryKey: 'id',
+ primaryType: 'seq',
+ action: true,
+ columns: [
+ {
+ title: '公告标题',
+ field: 'title',
+ isSearch: true
+ },
+ {
+ title: '公告类型',
+ field: 'type',
+ dictType: DICT_TYPE.SYSTEM_NOTICE_TYPE,
+ dictClass: 'number'
+ },
+ {
+ title: t('common.status'),
+ field: 'status',
+ dictType: DICT_TYPE.COMMON_STATUS,
+ dictClass: 'number',
+ isSearch: true
+ },
+ {
+ title: '公告内容',
+ field: 'content',
+ table: {
+ type: 'html'
+ },
+ form: {
+ component: 'Editor',
+ colProps: {
+ span: 24
+ },
+ componentProps: {
+ valueHtml: ''
+ }
+ },
+ isTable: false
+ },
+ {
+ title: t('common.createTime'),
+ field: 'createTime',
+ formatter: 'formatDate',
+ isForm: false
+ }
+ ]
+})
+export const { allSchemas } = useVxeCrudSchemas(crudSchemas)