wms-antdvue/.svn/pristine/37/37e21e6069e40acba66da5499436fdc5295422c1.svn-base
2024-11-07 16:33:03 +08:00

21 lines
350 B
Plaintext

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