wms-elevue/src/api/setting/web.ts
2024-07-24 13:50:25 +08:00

20 lines
335 B
TypeScript

import { http } from '@/utils/http/axios';
export function getWebInfo(params?) {
return http.request({
url: '/config/web/index',
method: 'GET',
params,
});
}
/**
* @description: 更新
*/
export function updateWeb(data:any) {
return http.request({
url: '/config/web/save',
method: 'POST',
data
});
}