update
This commit is contained in:
@@ -315,7 +315,77 @@ const merchant = {
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
}
|
||||
},
|
||||
getTaskChildrenInfo: async (id) => {
|
||||
return request({
|
||||
url: '/index/task/getTaskChildrenInfo',
|
||||
method: Method.POST,
|
||||
data: {id}
|
||||
});
|
||||
},
|
||||
passTask: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/passTask',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
getCommonRefund: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/getCommonRefund',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
getDiyRefund: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/getDiyRefund',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
getSuggestion: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/getSuggestion',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
refundChildrenTask: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/refundChildrenTask',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
stopTaskChildren: async (id) => {
|
||||
return request({
|
||||
url: '/index/task/stopTaskChildren',
|
||||
method: Method.POST,
|
||||
data: {id}
|
||||
});
|
||||
},
|
||||
addTaskBlock: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/addTaskBlock',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
addEffect: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/addEffect',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
confirmTask: async (data) => {
|
||||
return request({
|
||||
url: '/index/task/confirmTask',
|
||||
method: Method.POST,
|
||||
data: data
|
||||
});
|
||||
},
|
||||
}
|
||||
|
||||
export default merchant;
|
||||
|
||||
Reference in New Issue
Block a user