This commit is contained in:
2025-05-19 19:03:49 +08:00
parent 4f1946e790
commit 8f6a003c93
19 changed files with 268 additions and 139 deletions

View File

@@ -294,6 +294,27 @@ const merchant = {
method: Method.POST,
data: {id}
});
},
getSettlementBefore: async (data) => {
return request({
url: '/index/task/getSettlementBefore',
method: Method.POST,
data: data
});
},
getTaskInfo: async (id) => {
return request({
url: '/index/task/getTaskInfo',
method: Method.POST,
data: {id}
});
},
editTask: async (data) => {
return request({
url: '/index/task/editTask',
method: Method.POST,
data: data
});
}
}