This commit is contained in:
孟帅
2022-11-24 23:37:34 +08:00
parent 4ffe54b6ac
commit 29bda0dcdd
1487 changed files with 97869 additions and 96539 deletions

24
web/src/api/sys/config.ts Normal file
View File

@@ -0,0 +1,24 @@
import { http } from '@/utils/http/axios';
export function getConfig(params) {
return http.request({
url: '/config/get',
method: 'get',
params,
});
}
export function updateConfig(params) {
return http.request({
url: '/config/update',
method: 'post',
params,
});
}
export function sendTestEmail(params) {
return http.request({
url: '/ems/sendTest',
method: 'post',
params,
});
}