previewAttachment.jsp
1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<%@ page isELIgnored="false" language="java"
contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%
String contextPath = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ request.getContextPath();
%>
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title id="attchmentTitle"></title>
<link href="../libs/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="../common/css/iframe-content.css" rel="stylesheet" />
<link href="../common/css/common.css" rel="stylesheet" />
<link href="../css/officedocument/details.css" rel="stylesheet" />
<script src="../libs/jquery/jquery.min.js"></script>
<script src="<%=basePath%>/common/js/global/global.localStorage.js"></script>
<script src="<%=basePath%>/common/js/global/global.modelctls.js"></script>
<script src="../common/js/config.js"></script>
<script src="../libs/layer/layer.js"></script>
<script src="../js/common.js"></script>
<script src="../js/previewAttachment.js"></script>
<!-- 滚动条 -->
<link href="../libs/jquery/jquery.mCustomScrollbar.css" rel="stylesheet" />
<script src="../libs/jquery/jquery.mCustomScrollbar.concat.min.js"></script>
</head>
<body>
<div id="diviframe">
<iframe id="iframeImag" name="syiframe" frameborder="0" scrolling="no"
marginwidth="0" style="width:100%;height:100%;">
</iframe>
</div>
<!-- <div id="divbutton" class="div-att">
<div id="bottom">
<button class="btn btn-updown" onclick="beforeAttachment()">
<span class="glyphicon glyphicon-arrow-left"></span>
</button>
<button class="btn btn-updown" style="margin-left: 20px;" onclick="nextAttachment()">
<span class="glyphicon glyphicon-arrow-right"></span>
</button>
</div>
</div> -->
</body>
</html>