style:样式重构

This commit is contained in:
2025-10-18 09:24:35 +08:00
parent 729eba5a3b
commit 179be8f8b0
30 changed files with 880 additions and 423 deletions
+20
View File
@@ -0,0 +1,20 @@
import request from '../http'
// 获取系统配置(预留接口)
// 期望后端返回形如:{ code: 200, data: { expressReturnCountdownSeconds: number } }
export const getSystemConfig = () => {
return request({
url: '/app/system/config',
method: 'get',
hideLoading: true
})
}
// 获取通知接口
export const getNoticeTextData = (data) => {
return request({
url: `/system/notice/title/${data.title}`,
method: 'get'
})
}