You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
3.7 KiB
Plaintext

<%--
Created by IntelliJ IDEA.
User: 王思懿
Date: 2020/6/11
Time: 15:48
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>视频页面</title>
<%@ include file="/WEB-INF/jspf/common.jspf" %>
<style type="text/css">
</style>
</head>
<input type="hidden" id="roleId" value="${user.roleId}">
<body>
<fieldset>
<legend style="text-align: center;font-weight: bold;font-size: 25px">系统操作教程视频</legend>
</fieldset>
<%-- <div style="margin-left: 10px;">
<h4>我们在系统内为你们准备了系统的操作使用教程视频,点击下方链接即可观看</h4>
</div>--%>
<div style="margin-left: 3%; width: 20%">
<div id="onclick1" onclick="getVideoShowPage('1')" style="cursor:pointer">
<span id="span" class="glyphicon glyphicon-play" aria-hidden="true"></span>点击查看登录视频
</div>
<%--医生护士在院浏览--%>
<c:if test="${user.roleId == 0 || user.roleId == 16 || user.roleId == 19}">
<div id="onclick2" onclick="getVideoShowPage('2')" style="cursor:pointer; margin-top: 2px;">
<span class="glyphicon glyphicon-play" aria-hidden="true"></span>点击查看在院浏览视频
</div>
</c:if>
<%--主管医生护士长在院浏览--%>
<c:if test="${user.roleId == 0 || user.roleId == 24 || user.roleId == 23 || user.roleId == 29 || user.roleId == 26}">
<div id="onclick3" onclick="getVideoShowPage('3')" style="cursor:pointer; margin-top: 2px;">
<span class="glyphicon glyphicon-play" aria-hidden="true"></span>点击查看在院浏览视频
</div>
</c:if>
<%--医生护士出院浏览--%>
<c:if test="${user.roleId == 0 || user.roleId == 16 || user.roleId == 19}">
<div id="onclick4" onclick="getVideoShowPage('4')" style="cursor:pointer; margin-top: 2px;">
<span class="glyphicon glyphicon-play" aria-hidden="true"></span>点击查看出院浏览视频
</div>
</c:if>
<%--主管医生出院浏览--%>
<c:if test="${user.roleId == 0 || user.roleId == 24 || user.roleId == 26}">
<div id="onclick5" onclick="getVideoShowPage('5')" style="cursor:pointer; margin-top: 2px;">
<span class="glyphicon glyphicon-play" aria-hidden="true"></span>点击查看出院浏览视频
</div>
</c:if>
<%--护士长出院浏览--%>
<c:if test="${user.roleId == 0 || user.roleId == 23 || user.roleId == 29}">
<div id="onclick6" onclick="getVideoShowPage('6')" style="cursor:pointer; margin-top: 2px;">
<span class="glyphicon glyphicon-play" aria-hidden="true"></span>点击查看出院浏览视频
</div>
</c:if>
<%--科主任审核--%>
<c:if test="${user.roleId == 0 || user.roleId == 25 || user.roleId == 26}">
<div id="onclick7" onclick="getVideoShowPage('7')" style="cursor:pointer; margin-top: 2px;">
<span class="glyphicon glyphicon-play" aria-hidden="true"></span>点击查看科主任审核视频
</div>
</c:if>
<%--<div onclick="getVideoShowPage('8')" style="cursor:pointer">
点击查看高拍仪扫描上传文件视频
</div>--%>
</div>
<div id="iframeVideoDiv" style="display: none">
<iframe class="row-fluid" style="margin-left:40px;height:100%;width:85%;"
id="iframe" name="iframe" scrolling="no" frameborder="0"></iframe>
</div>
</body>
<script src="${path}/static/js/video.js"></script>
<script src="${path}/static/js/getewayIndex.js"></script>
</html>