修复bug

This commit is contained in:
2026-05-04 17:49:00 +08:00
parent e1c9068ab0
commit 2f0479ea05
10 changed files with 531 additions and 101 deletions
+5 -4
View File
@@ -1,11 +1,12 @@
import request from '../http'
// 获取系统配置(预留接口)
// 期望后端返回形如:{ code: 200, data: { expressReturnCountdownSeconds: number } }
export const getSystemConfig = () => {
// 获取系统配置
// 可传参示例:{ configKey: 'overseas_payment_dana_total' }
export const getSystemConfig = (data = {}) => {
return request({
url: '/app/system/config',
url: '/system/config/list',
method: 'get',
data,
hideLoading: true
})
}