视频接口优化,案例检索

This commit is contained in:
xiezhijun
2021-05-08 19:09:32 +08:00
parent d474e823c3
commit 8600f48740
26 changed files with 396 additions and 71 deletions

View File

@ -96,3 +96,13 @@ export function orderDetailDay(query) {
})
}
// 导出具体订单按天计算提成明细
export function exportOrderDetailDay(query) {
return request({
url: '/custom/commision/exportOrderDetailDay',
method: 'get',
params: query
})
}

View File

@ -69,3 +69,12 @@ export function updateWxShow(data){
params: data
})
}
// 查询营养视频播放地址
export function getVideoPlayUrlById(id) {
return request({
url: '/custom/nutritionalVideo/getVideoPlayUrlById/' + id,
method: 'get'
})
}