| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import request from '@/utils/request'
- // 查询长视频列表
- export function listshortVideo(query) {
- return request({
- url: '/delivery/shortVideo/list',
- method: 'get',
- params: query
- })
- }
- // 查询长视频详细
- export function getshortVideo(id) {
- return request({
- url: '/delivery/shortVideo/' + id,
- method: 'get'
- })
- }
- // 新增长视频
- export function addshortVideo(data) {
- return request({
- url: '/delivery/shortVideo',
- method: 'post',
- data: data
- })
- }
- // 修改长视频
- export function updateshortVideo(data) {
- return request({
- url: '/delivery/shortVideo',
- method: 'put',
- data: data
- })
- }
- // 删除长视频
- export function delshortVideo(id) {
- return request({
- url: '/delivery/shortVideo/' + id,
- method: 'delete'
- })
- }
- // 导出长视频
- export function exportshortVideo(query) {
- return request({
- url: '/delivery/shortVideo/export',
- method: 'get',
- params: query
- })
- }
|