feat: 添加通知列表功能和样式优化

This commit is contained in:
wangqiao
2025-09-07 22:30:20 +08:00
parent 9f5942546d
commit 7a33f67aed
2 changed files with 16 additions and 14 deletions

View File

@ -103,4 +103,11 @@ export const getTDK = () => {
*/
export const getTDKList = () => {
return useFetchRequest.get<IResponse<TdkSettingsDO[]>>('/prod-api/app-api/business/tdk-settings/list-menu', {})
}
/**
* 通知列表
*/
export const getNoticeList = () => {
return useDollarFetchRequest.get<IResponse<any>>('/prod-api/app-api/system/index-setting/notice-list', {})
}