update
This commit is contained in:
@@ -567,6 +567,20 @@ const admin = {
|
||||
data: data,
|
||||
});
|
||||
},
|
||||
passExchange: async (ids) => {
|
||||
return request({
|
||||
url: '/admin/ExchangeLog/passExchange',
|
||||
method: Method.POST,
|
||||
data: {ids},
|
||||
});
|
||||
},
|
||||
refuseExchange: async (ids) => {
|
||||
return request({
|
||||
url: '/admin/ExchangeLog/refuseExchange',
|
||||
method: Method.POST,
|
||||
data: {ids},
|
||||
});
|
||||
},
|
||||
}
|
||||
|
||||
export default admin;
|
||||
|
||||
@@ -386,6 +386,27 @@ const merchant = {
|
||||
data: data
|
||||
});
|
||||
},
|
||||
getTaskSettltment: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/getTaskSettltment',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
addExchangeLog: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/addExchangeLog',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
getExchangeLog: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/getExchangeLog',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
}
|
||||
|
||||
export default merchant;
|
||||
|
||||
Reference in New Issue
Block a user