<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" trimDirectiveWhitespaces="true" %>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
<%
|
String path = request.getContextPath();
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
|
+ path + "/";
|
%>
|
|
<!DOCTYPE HTML>
|
<html>
|
<head>
|
<base href="<%=basePath%>">
|
<title>提示</title>
|
<link href="static/plugins/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css">
|
<link href="static/plugins/jquery-easyui/themes/bootstrap/easyui.css" rel="stylesheet" type="text/css">
|
<link rel="stylesheet" href="static/styles/initialize.css" type="text/css">
|
<link rel="stylesheet" href="static/styles/common.css" type="text/css">
|
<link rel="stylesheet" href="static/styles/archives.css" type="text/css">
|
<script type="text/javascript" src="static/plugins/jquery/jquery.min.js"></script>
|
|
</head>
|
|
<body>
|
<div class="application_tips_con">
|
<div class="tips_num">
|
<i class="fa fa-check-circle"></i>
|
<h5>
|
共关联原始文件:<font
|
style="color:red;">${ysTotal}</font>件;
|
<%-- <br/>其中成果文件关联成功<font style="color:red;">${cgSuccess}</font>件;--%>
|
<%-- <c:if test="${cgFailed!=0}">--%>
|
<%-- 关联失败<font style="color:red;">${cgFailed}</font>件;--%>
|
<%-- </c:if>--%>
|
<br/>其中原始文件关联成功<font style="color:red;">${ysSuccess}</font>件;
|
<c:if test="${ysFailed!=0}">
|
关联失败<font style="color:red;">${ysFailed}</font>件;
|
</c:if>
|
<%-- <br/> 当前${type}申请单中共有<font style="color:red">${existFileNum}</font>档资料,--%>
|
<%-- 包含<font style="color:red">${existItemNum}</font>件文件级资料。--%>
|
</h5>
|
</div>
|
<%-- <p>--%>
|
<%-- <span>注意:</span>--%>
|
<%-- 纸质借阅请到借阅管理员处领取资料,电子借阅请在审批通过后到“我的${type}单”中查看。--%>
|
<%-- </p>--%>
|
<%-- <div class="application-btn">--%>
|
<%-- <button class="pt-btn pt-btn-info" onclick="closeWindow()">继续浏览</button>--%>
|
<%-- <button class="pt-btn pt-btn-default" onclick="openUtilizationForm()">查看${type}单</button>--%>
|
<%-- </div>--%>
|
</div>
|
<script type="text/javascript">
|
<%--var urlPath = ${urlPath};--%>
|
var path = "<%=path%>/${urlPath}";
|
|
//关闭窗口事件
|
function closeWindow() {
|
var index = top.layer.getFrameIndex(window.name); //获取窗口索引
|
top.layer.close(index);
|
}
|
|
function openUtilizationForm() {
|
closeWindow();
|
|
<%--window.open("<%=path%>/" + urlPath);--%>
|
window.open(path);
|
}
|
|
function openTab(url, title, partId, type) {
|
top.addPanel(url, title);
|
var curTabWin = null;
|
var curTab = top.$('#tt').tabs('getSelected');
|
if (curTab && curTab.find('iframe').length > 0) {
|
curTabWin = curTab.find('iframe')[0].contentWindow;
|
//将回调函数传给子页面
|
$(curTabWin).load(function () {
|
if (curTabWin.params) {
|
curTabWin.params.callBackParams = partId;
|
curTabWin.params.callBack = getPartContent;
|
if (type == 1) {
|
curTabWin.params.callBack = refreshData;
|
}
|
}
|
});
|
}
|
}
|
</script>
|
</body>
|
</html>
|