update
This commit is contained in:
@@ -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
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user