2024-10-24 10:42:44 +08:00
|
|
|
import { http } from '@/api/service/request';
|
|
|
|
import type { BaseResult } from '@/api/service/types';
|
|
|
|
|
|
|
|
/** 获取修改前端配置文件 */
|
|
|
|
export const fetchGetWebConfig = () => {
|
2025-04-24 13:43:37 +08:00
|
|
|
return http.request<BaseResult<any>>('get', '/config/getWebConfig');
|
2024-10-24 10:42:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/** 更新web配置文件 */
|
|
|
|
export const fetchUpdateWebConfiguration = (data: any) => {
|
2025-04-24 13:43:37 +08:00
|
|
|
return http.request<BaseResult<any>>('put', '/config/updateWebConfiguration', { data });
|
2024-10-24 10:42:44 +08:00
|
|
|
};
|