This commit is contained in:
lai
2025-05-21 15:24:13 +08:00
parent 43034fd082
commit 331315ab84
5 changed files with 393 additions and 15 deletions

View File

@@ -0,0 +1,16 @@
import { request } from '@/plugins/http-fetch';
/**
* 查询定时任务调度列表
* @param query 查询参数
* @returns object
*/
export function listCallings(query: Record<string, any>) {
return request({
url: '/psap/v1/mf/callings/list',
method: 'get',
params: query,
});
}