This commit is contained in:
2025-05-19 19:03:53 +08:00
parent ddfd747704
commit e15474a836
14 changed files with 242 additions and 66 deletions

View File

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