This commit is contained in:
2025-06-20 21:21:52 +08:00
parent 122b6a745f
commit e50aa7cbdf
12 changed files with 260 additions and 42 deletions

View File

@@ -561,6 +561,20 @@ const merchant = {
data: data
});
},
finshReply: async (data) => {
return request({
url: '/index/task/finshReply',
method: Method.POST,
data: data
});
},
getBackinfo: async (data) => {
return request({
url: '/index/task/getBackinfo',
method: Method.POST,
data: data
});
},
}
export default merchant;