Blame view

WebRoot/WEB-INF/jsp/information/pictures/pictures_add.jsp 3.38 KB
ad5081d3   孙向锦   初始化项目
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
  <%@ page language="java" contentType="text/html; charset=UTF-8"
  	pageEncoding="UTF-8"%>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  <%
  	String path = request.getContextPath();
  	String basePath = request.getScheme() + "://"
  			+ request.getServerName() + ":" + request.getServerPort()
  			+ path + "/";
  %>
  <!DOCTYPE html>
  <html lang="en">
  <head>
  <base href="<%=basePath%>">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  <meta charset="utf-8" />
  <title>${pd.SYSNAME}</title>
  <meta name="description" content="" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
  <!-- bootstrap & fontawesome -->
  <link rel="stylesheet" href="static/ace/css/bootstrap.min.css" />
  <link rel="stylesheet" href="static/ace/css/font-awesome.css" />
  <!-- page specific plugin styles -->
  <!-- text fonts -->
  <link rel="stylesheet" href="static/ace/css/ace-fonts.css" />
  <!-- ace styles -->
  <link rel="stylesheet" href="static/ace/css/ace.css" class="ace-main-stylesheet" id="main-ace-style" />
  <!--[if lte IE 9]>
  	<link rel="stylesheet" href="static/ace/css/ace-part2.css" class="ace-main-stylesheet" />
  <![endif]-->
  <!--[if lte IE 9]>
    <link rel="stylesheet" href="static/ace/css/ace-ie.css" />
  <![endif]-->
  <!-- inline styles related to this page -->
  <!-- ace settings handler -->
  <script src="static/ace/js/ace-extra.js"></script>
  <!-- HTML5shiv and Respond.js for IE8 to support HTML5 elements and media queries -->
  <!--[if lte IE 8]>
  <script src="static/ace/js/html5shiv.js"></script>
  <script src="static/ace/js/respond.js"></script>
  <![endif]-->
  <!-- webuploader上传插件css -->
  <link rel="stylesheet" type="text/css" href="plugins/webuploader/webuploader.css" />
  <link rel="stylesheet" type="text/css" href="plugins/webuploader/style.css" />
  </head>
  <body class="no-skin">
  	<div class="main-container" id="main-container">
  		<div class="main-content">
  			<div class="main-content-inner">
  		    <div id="wrapper">
  		        <div id="container">
  		            <!--头部,相册选择和格式选择-->
  		            <div id="uploader">
  		                <div class="queueList">
  		                    <div id="dndArea" class="placeholder">
  		                        <div id="filePicker"></div>
  		                        <p>或将照片拖到这里,单次最多可选300张</p>
  		                    </div>
  		                </div>
  		                <div class="statusBar" style="display:none;">
  		                    <div class="progress">
  		                        <span class="text">0%</span>
  		                        <span class="percentage"></span>
  		                    </div><div class="info"></div>
  		                    <div class="btns">
  		                        <div id="filePicker2"></div><div class="uploadBtn">开始上传</div>
  		                    </div>
  		                </div>
  		            </div>
  		        </div>
  		    </div>
  			</div>
  		</div>
  	</div>
  	<!-- basic scripts -->
  	<!-- 页面底部js¨ -->
  	<%@ include file="../../system/index/foot.jsp"%>
  	<!-- ace scripts -->
  	<script src="static/ace/js/ace/ace.js"></script>
  	<!-- webuploader上传插件js -->
     	<script type="text/javascript" src="plugins/webuploader/webuploader.js"></script>
     	<script type="text/javascript" src="plugins/webuploader/upload.js"></script>
  	<script type="text/javascript">
  		$(top.hangge());
  	</script>
  </body>
  </html>