This commit is contained in:
2025-06-13 21:01:33 +08:00
parent 376d9d5cfe
commit 88a8d119cf
15 changed files with 429 additions and 49 deletions

View File

@@ -362,6 +362,20 @@ const system = {
data: data
});
},
abandonTask: async (data) => {
return request({
method: MethodsENUM.POST,
url: "/task/abandonTask",
data: data
});
},
intervention: async (data) => {
return request({
method: MethodsENUM.POST,
url: "/task/intervention",
data: data
});
},
}
export default system;