This commit is contained in:
2025-07-08 17:33:49 +08:00
parent de2aeb6abb
commit 31095494fd
8 changed files with 110 additions and 43 deletions

View File

@@ -376,6 +376,13 @@ const system = {
data: data
});
},
interventionV2: async (data) => {
return request({
method: MethodsENUM.POST,
url: "/Task/addIntervention",
data: data
});
},
complaint: async (data) => {
return request({
method: MethodsENUM.POST,
@@ -418,6 +425,13 @@ const system = {
data: {id}
});
},
checkDownload: async (id) => {
return request({
method: MethodsENUM.POST,
url: "/Task/checkDownload",
data: {id}
});
},
}
export default system;