From 3d4355d8791c7e990377c7a2abc5ce238e752e91 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期一, 26 一月 2026 17:36:05 +0800
Subject: [PATCH] 进销存-升级 1.销售台账页面代码重构 2.发货台账页面联调 3.采购台账代码重构,采购模版添加修改和删除,逻辑完善 4.采购审批页面逻辑修改完善 5.采购台账、销售台账导入和下载模版修改
---
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