新增接口

This commit is contained in:
lai
2025-07-18 15:03:25 +08:00
parent 03082ba11f
commit b1776f66a0

View File

@@ -2,7 +2,7 @@ import { request } from '@/plugins/http-fetch';
/**
* 查询定时任务调度列表
* 查询工单列表
* @param query 查询参数
* @returns object
*/
@@ -14,3 +14,14 @@ export function listCallBack(query: Record<string, any>) {
});
}
/**
* 切换进行中状态
* @param
* @returns bolb
*/
export function updateStatus(data: Record<string, any>) {
return request({
url: `psap/v1/mf/ticket/${data.ticketId}/status`,
method: 'PATCH',
});
}