This commit is contained in:
唐明明
2022-09-23 17:10:22 +08:00
39 changed files with 2112 additions and 1361 deletions

View File

@@ -0,0 +1,33 @@
/**
* Web-zdx
* moduleName: 任务模块接口
*/
import {
request
} from '../index'
// 意见反馈通知列表
const list = (data) => {
return request({
url: 'mall/shops/tasks',
data:data,
})
}
// 根据活动 id 获取视频的链接
const getVideoUrl = (id) => {
return request({
url: 'mall/shops/tasks/'+id+'/url',
})
}
export {
list,
getVideoUrl,
}