From 5cd618c9523ad30dccf858a00ff6d99a28de4187 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 11 九月 2025 10:24:35 +0800
Subject: [PATCH] feat: 公告
---
packages/services/api/LifePayAnnouncement.ts | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/packages/services/api/LifePayAnnouncement.ts b/packages/services/api/LifePayAnnouncement.ts
index d22e488..4714e3e 100644
--- a/packages/services/api/LifePayAnnouncement.ts
+++ b/packages/services/api/LifePayAnnouncement.ts
@@ -50,12 +50,19 @@
);
}
-/** 鑾峰彇褰撳墠灞曠ず涓殑鍏憡 GET /api/LifePayAnnouncement/GetShowingLifePayAnnouncement */
-export async function getShowingLifePayAnnouncement(options?: API.RequestConfig) {
+/** 鑾峰彇褰撳墠灞曠ず涓殑鍏憡 POST /api/LifePayAnnouncement/GetShowingLifePayAnnouncement */
+export async function getShowingLifePayAnnouncement(
+ body: API.GetShowingLifePayAnnouncementInput,
+ options?: API.RequestConfig
+) {
return request<API.CreateEditLifePayAnnouncementOutput>(
'/api/LifePayAnnouncement/GetShowingLifePayAnnouncement',
{
- method: 'GET',
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
...(options || {}),
}
);
--
Gitblit v1.9.1