22 lines
729 B
TypeScript
Raw Normal View History

import http from "@/api";
const BASEURL = import.meta.env.VITE_API_URL;
// 根据分组查询视频列表
export const selectProjectVideoListApi = (params: {}) => {
return http.post(BASEURL + `/xmgl/videoItem/selectProjectVideoList`, params);
};
// 查询子账号视频列表
export const selectUserVideoListApi = (params: {}) => {
return http.post(BASEURL + `/xmgl/videoItem/selectUserVideoList`, params);
};
// 查询子账号视频列表
export const getSafeHatSessionApi = (params: {}) => {
return http.post(BASEURL + `/xmgl/projectApi/getSafeyHatSession`, params);
};
2024-04-17 21:57:06 +08:00
// 现场视频
export const selectLiveVideoListApi = (params: {}) => {
return http.get(BASEURL + `/xmgl/project/getProjectExtendInfo`, params);
};