13 lines
437 B
TypeScript
13 lines
437 B
TypeScript
|
import { http } from '@/api/service/request';
|
||
|
import type { BaseResult } from '@/api/service/types';
|
||
|
|
||
|
/** 获取修改前端配置文件 */
|
||
|
export const fetchGetWebConfig = () => {
|
||
|
return http.request<BaseResult<any>>('get', '/config/getWebConfig');
|
||
|
};
|
||
|
|
||
|
/** 更新web配置文件 */
|
||
|
export const fetchUpdateWebConfiguration = (data: any) => {
|
||
|
return http.request<BaseResult<any>>('put', '/config/updateWebConfiguration', { data });
|
||
|
};
|