fix: 去除请求方法PATCH

This commit is contained in:
TsMask
2025-04-27 17:47:58 +08:00
parent 2de9788373
commit f41557de94

View File

@@ -220,6 +220,6 @@ export function taskRun(data: Record<string, any>) {
export function taskStop(data: Record<string, any>) {
return request({
url: `/api/rest/performanceManagement/v1/elementType/${data.neType.toLowerCase()}/objectType/measureTask?id=${data.id}`,
method: 'PATCH',
method: 'PUT',
});
}