From 037065ece589015e322de279e9d08fff72d0d9dc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?=
=?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com>
Date: Mon, 10 Mar 2025 17:14:05 +0800
Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/common/notic.js | 32 ++++++++++++
sub/owner/notic.vue | 124 +++++++++++++++++++++++++++++---------------
2 files changed, 113 insertions(+), 43 deletions(-)
create mode 100644 api/common/notic.js
diff --git a/api/common/notic.js b/api/common/notic.js
new file mode 100644
index 0000000..ebf6128
--- /dev/null
+++ b/api/common/notic.js
@@ -0,0 +1,32 @@
+import request from '@/utils/request'
+
+export const NoticApi = {
+ /**
+ * 获取标签数据
+ */
+ getTabData: () => {
+ return request({
+ url: '/system/notify-message/typeCount',
+ method: 'GET',
+ })
+ },
+ /**
+ * 获取列表数据
+ */
+ getListData: params => {
+ return request({
+ url: '/system/notify-message/page',
+ method: 'GET',
+ params
+ })
+ },
+ /**
+ * 已读
+ */
+ readNotic: id => {
+ return request({
+ url: `/system/notify-message/update-read?ids=${id}`,
+ method: 'PUT',
+ })
+ }
+}
\ No newline at end of file
diff --git a/sub/owner/notic.vue b/sub/owner/notic.vue
index 7b79554..d7bf887 100644
--- a/sub/owner/notic.vue
+++ b/sub/owner/notic.vue
@@ -3,14 +3,16 @@
- {{ tab.name }}
- {{ tab.count }}
+
+ {{ $dict.echoDicValue(dictMap.notfy_message_type, tab.label) }}
+
+ {{ tab.value }}
@@ -26,13 +28,13 @@
-
+
- {{ item.title }}
- {{ item.time }}
+
+ {{ item.templateParams.title }}
+
+
+ {{
+ `${$util.formatDate(
+ item.templateParams.startTime,
+ 'YYYY年M月D日'
+ )} -
+ ${$util.formatDate(
+ item.templateParams.endTime,
+ 'YYYY年M月D日'
+ )}`
+ }}
+
+
+ {{
+ `到期时间
+ ${$util.formatDate(item.templateParams.endTime, 'YYYY年M月D日')}`
+ }}
+
-
+