123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <%@ 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="f" uri="http://www.jee-soft.cn/functions" %>
- <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <c:set var="ctx" value="${pageContext.request.contextPath}" />
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <link title="index" name="styleTag" rel="stylesheet" type="text/css" href="${ctx}/styles/blue/css/web.css">
- <%@include file="/commons/include/customForm.jsp" %>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/system/SysDialog.js"></script>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/bpm/SelectUtil.js" ></script>
- <title>协同办公</title>
- <script>
- function renderFile(fileid){
- //获取正文
- if(fileid==""||fileid==null) return;
- //判断是否已经上传了文件
- if(fileid!=""){
- //将文件渲染到表单中
- var jsonObj = {};
- jsonObj.id = fileid;
- jsonObj.name = fileid+".pdf";
- var JsonStr=JSON.parse("["+JSON.stringify(jsonObj)+"]");
- var divObj = $("#fileidDiv"+fileid);
- var textareaObj=$("#fileidArea"+fileid);
- var html=AttachMent.getHtml(JsonStr,"w");
- divObj.empty();
- divObj.append(html);
- textareaObj.empty();
- textareaObj.val(JSON.stringify(JsonStr));
- }
- }
- function closeThis(){
- window.parent.closeDia();
- }
- </script>
- <style>
- .qs_link{
- font-weight: 400;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- border: 1px solid transparent;
- padding: 0.2rem 1rem 0.2rem 0.6rem;
- font-size: 1rem;
- color: #fff!important;
- display: inline-block;
- line-height: 1.25;
- border-radius: .2rem;
- text-decoration: none;
- /* border-radius: .25rem; */
- transition: all .15s ease-in-out;
- /* width: 100%; */
- /* height: 100%; */
- background: #3094f1 !important;
- margin-bottom: 15px;
- }
- .qs_link span{
- font-size: 16px;
- font-weight: bold;
- color: #fff;
- margin-right: 5px;
- }
- .table td{
- text-align: center;
- }
- .qs_div .panel-toolbar{
- padding: 0px 5px 0px;
- }
- </style>
- <script>
- var dialog
- function selectSignForContent(ID){
- var url="${ctx}/platform/bpm/processRun/selectSignForContent.ht?id="+ID;
- dialog=DialogUtil.open({
- height : 540,
- width : 600,
- title : '办理结果',
- url: url
- });
- }
- function closeDia(){
- dialog.close();
- }
- </script>
- </head>
- <body>
- <div class="panel qs_div">
- <div class="panel-top">
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group"><a class="qs_link" onclick="closeThis()" href="#"><span>X</span>关闭</a></div>
- <div class="l-bar-separator"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="panel-body">
- <table cellspacing="1" id="processRunItem" class="table table-grid table-list" cellpadding="1" style="margin-top: 0px;">
- <thead>
- <tr>
- <th style="text-align:center">人员姓名</th>
- <th style="text-align:center">签收时间</th>
- <th style="text-align:center">当前状态</th>
- <th style="text-align:center">办理结果</th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${signReceiptList}" var="signReceiptItem" >
- <tr>
- <td> ${signReceiptItem.FULLNAME}</td>
- <td>${signReceiptItem.SIGNINGTIME}</td>
- <td>
- <c:if test="${signReceiptItem.STATUS eq '0'}"><div style="color:red">未签收</div></c:if>
- <c:if test="${signReceiptItem.STATUS eq '1'}"><div style="color:green">已签收</div></c:if>
- <c:if test="${signReceiptItem.STATUS eq '2'}"><div style="color:grey">已驳回</div></c:if>
- <c:if test="${signReceiptItem.STATUS eq '3'}"><div style="color:blue">已办结</div></c:if>
- </td>
- <td>
- <c:if test="${signReceiptItem.STATUS eq '2' || signReceiptItem.STATUS eq '3'}">
- <input type="button" class="link " onclick="selectSignForContent('${signReceiptItem.ID}')" value="查看" style="background: #3094f1;border:0px;color: #fff;cursor: pointer; " />
- </c:if>
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </body>
|