From 31e43b73379326df5d0d06dcc37ef5049a34f0f1 Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期三, 26 八月 2026 14:28:55 +0800
Subject: [PATCH] feat: 添加清除当前用户的所有消息按钮
---
src/api/system/message.js | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/src/api/system/message.js b/src/api/system/message.js
index 871d7e8..e4d278c 100644
--- a/src/api/system/message.js
+++ b/src/api/system/message.js
@@ -30,11 +30,19 @@
// 涓�閿爣璁版墍鏈夋秷鎭负宸茶
export function markAllAsRead() {
return request({
- url: "/system/notice/markAllAsRead",
+ url: "/system/notice/readAll",
method: "post",
});
}
+// 娓呴櫎褰撳墠鐢ㄦ埛鐨勫叏閮ㄦ秷鎭�
+export function clearAllMessage() {
+ return request({
+ url: "/system/notice/clearAll",
+ method: "delete",
+ });
+}
+
// 纭娑堟伅
export function confirmMessage(noticeId, status) {
return request({
--
Gitblit v1.9.3