登录页面图片验证处理

This commit is contained in:
2022-10-11 16:48:16 +08:00
parent c20f6cd005
commit 83fe74d948
49 changed files with 7451 additions and 6571 deletions

View File

@@ -8,7 +8,12 @@ import {
request
} from '../index'
// 获取当前 token 用户的任务领取情况
const user = () => {
return request({
url: 'mall/shops/tasks/user',
})
}
// 意见反馈通知列表
const list = (data) => {
@@ -26,8 +31,19 @@ const getVideoUrl = (id) => {
})
}
// 完成任务
const execute = (id) => {
return request({
url: 'mall/shops/tasks/'+id+'/execute',
method:'POST',
})
}
export {
user,
list,
getVideoUrl,
execute,
}