From db09e248daf72ad0ffe0f55ebf204e7d8595ce74 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 11 二月 2026 16:54:07 +0800
Subject: [PATCH] 进销存升级 1.选择台账时,若台账未开票和未来票金额为0时,开票登记和来票登记按钮置灰 2.文档管理分页展示有误 3.销售报价分页展示有误
---
src/api/system/message.js | 17 +++++++++--------
1 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/src/api/system/message.js b/src/api/system/message.js
index b046016..dd81cc5 100644
--- a/src/api/system/message.js
+++ b/src/api/system/message.js
@@ -10,26 +10,27 @@
}
// 鏌ヨ鏈娑堟伅鏁伴噺
-export function getUnreadCount() {
+export function getUnreadCount(consigneeId) {
return request({
url: "/system/notice/getCount",
method: "get",
+ params: { consigneeId },
});
}
// 鏍囪娑堟伅涓哄凡璇�
-export function markAsRead(noticeId) {
+export function markAsRead(noticeId, status) {
return request({
- url: "/system/notice/markAsRead",
- method: "post",
- data: { noticeId },
+ url: "/system/notice",
+ method: "put",
+ data: { noticeId, status },
});
}
// 涓�閿爣璁版墍鏈夋秷鎭负宸茶
export function markAllAsRead() {
return request({
- url: "/system/notice/markAllAsRead",
+ url: "/system/notice/readAll",
method: "post",
});
}
@@ -37,8 +38,8 @@
// 纭娑堟伅
export function confirmMessage(noticeId, status) {
return request({
- url: "/system/notice/confirm",
- method: "post",
+ url: "/system/notice",
+ method: "put",
data: { noticeId, status },
});
}
--
Gitblit v1.9.3