视频会议上传文件
This commit is contained in:
+10
-2
@@ -39,11 +39,19 @@ export function htmlToPDF(data) {
|
||||
}
|
||||
}
|
||||
// 根据userId查询该用户是否是秘书
|
||||
export function secretaryRoleByUserId(userId) {
|
||||
export function secretaryRoleByUserId(userId, caseId) {
|
||||
let appType = sessionStorage.getItem('type');
|
||||
if (appType == 'tiaojie') {
|
||||
return axios.get(`${baseUrl}/video/secretaryRoleByUserId?userId=${userId}`);
|
||||
return axios.get(`${baseUrl}/video/secretaryRoleByUserId?userId=${userId}&caseId=${caseId}`);
|
||||
} else {
|
||||
return axios.get(`${baseUrlZC}/video/secretaryRoleByUserId?userId=${userId}`);
|
||||
}
|
||||
}
|
||||
// 获取证据列表
|
||||
export function selectById(caseId) {
|
||||
return axios.get(`${baseUrl}/caseApplication/selectById?id=${caseId}`);
|
||||
}
|
||||
// 根据案件id查询登录人是否为申请人被申请人
|
||||
export function selectRoleMenuByCaseId(caseId) {
|
||||
return axios.get(`${baseUrl}/video/selectRoleMenuByCaseId?caseId=${caseId}`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user