2023-07-14 09:05:43 +08:00
|
|
|
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);
|
|
|
|
|
};
|
2023-11-13 10:04:05 +08:00
|
|
|
|
|
|
|
|
// 查询子账号视频列表
|
|
|
|
|
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);
|
|
|
|
|
};
|