📄 affairdetail.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ page import="java.text.SimpleDateFormat"%>
<%@ page import="java.util.Date"%>
<link href="<%=request.getContextPath()%>/Css_file/oa.css" rel="stylesheet" type="text/css" />
<script src="<%=request.getContextPath()%>/Js_file/date.js"></script>
<c:set var="step" value="${requestScope.affair.sprestep}"></c:set>
<body <c:if test="${step+1!=requestScope.affair.tstep}">onload="init();"</c:if>>
<html:form action="/affairReq" method="post" styleId="form1" enctype="multipart/form-data">
<table width="100%" border="1" cellspacing="0" class="myTable">
<tr>
<td colspan="4" align="center" class="tableHead"><strong>事务发起信息</strong></td>
</tr>
<tr>
<td align="right" width="15%">事务等级</td>
<td colspan="3"><input name="text" type="text" style="width: 100%" disabled="disabled" value="<c:if test="${requestScope.req.rgrade==0}">一般</c:if><c:if test="${requestScope.req.rgrade==1}">重要</c:if><c:if test="${requestScope.req.rgrade==2}">紧急</c:if>"/>
</td>
</tr>
<tr>
<td align="right">事务标题</td>
<td colspan="3"><input name="text" type="text" style="width: 100%" maxlength="45" disabled="disabled" value="${requestScope.req.rtitle}"/></td>
</tr>
<tr>
<td align="right">事务详情</td>
<td colspan="3"><textarea name="text" cols="70" rows="3" disabled="disabled" value="">${requestScope.req.rdetail}</textarea></td>
</tr>
<tr>
<td align="right">希望下一环节完成时间</td>
<td colspan="3"><input type="text" name="text" style="width: 100%" disabled="disabled" value="${requestScope.req.rnexttime}"/></td>
</tr>
<tr>
<td align="right">事务发起人</td>
<td colspan="3">
<input type="text" name="text" style="width: 100%" disabled="disabled" value="${requestScope.req.utruename}"/>
</td>
</tr>
<tr>
<td align="right">事务备注</td>
<td colspan="3"><textarea name="text" cols="70" rows="3" disabled="disabled" value="">${requestScope.req.rmemo}</textarea></td>
</tr>
<logic:iterate id="alist" name="audit" scope="request">
<c:if test="${requestScope.currentid!=null}">
<c:if test="${alist.scurrentid==requestScope.currentid}">
<tr class="tableHead">
<td colspan="4" align="center" >
<strong>事务第${alist.scurrentid}个环节处理信息</strong>
</td>
</tr>
<tr>
<td align="right" width="15%">负责人</td>
<td colspan="3"><input name="text" type="text" style="width: 100%" disabled="disabled" value="${alist.utruename}"/>
</td>
</tr>
<tr>
<td align="right">处理时间</td>
<td colspan="3"><input name="text" type="text" style="width: 100%" maxlength="45" disabled="disabled" value="${alist.scurrenttime}"/></td>
</tr>
<tr>
<td align="right">希望下一环节完成时间</td>
<td colspan="3"><input type="text" name="text" style="width: 100%" disabled="disabled" value="${alist.snexttime}"/></td>
</tr>
<tr>
<td align="right">附件</td>
<td colspan="3">
<logic:empty name="alist" property="sname">
该环节没有附件
</logic:empty>
<c:if test="${alist.sname==null}">
该环节没有附件
</c:if>
<c:if test="${alist.sname!=null}"><strong>【${alist.sname}】</strong>
<a href="${pageContext.request.contextPath}/Jsp_file/affair/down.jsp?filename=${alist.sname}">点击下载</a>
</c:if>
</td>
</tr>
</c:if>
</c:if>
</logic:iterate>
</table>
<a href="<%=request.getContextPath()%>/login.do?method=main"><strong><< 返回首页 <strong></a>
</html:form>
</body>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -