mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-12-29 19:45:59 +08:00
25 lines
404 B
TypeScript
25 lines
404 B
TypeScript
import { http } from '@/utils/http/axios';
|
|
|
|
export function getLogList(params) {
|
|
return http.request({
|
|
url: '/log/list',
|
|
method: 'get',
|
|
params,
|
|
});
|
|
}
|
|
export function Delete(params) {
|
|
return http.request({
|
|
url: '/log/delete',
|
|
method: 'POST',
|
|
params,
|
|
});
|
|
}
|
|
|
|
export function View(params) {
|
|
return http.request({
|
|
url: '/log/view',
|
|
method: 'GET',
|
|
params,
|
|
});
|
|
}
|