68 lines
2.1 KiB
Plaintext
68 lines
2.1 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8"%>
|
||
<%@ include file="/commons/taglibs.jsp"%>
|
||
<%
|
||
String path = request.getContextPath();
|
||
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
||
%>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<%@ include file="/commons/meta.jsp"%>
|
||
<base href="<%=basePath%>">
|
||
<title>催办提醒</title>
|
||
|
||
</head>
|
||
<body>
|
||
<form action="${ctx}${pageContext.request.contextPath}/fileLog/update.do" method="post">
|
||
<div class="content">
|
||
<div class="wrap">
|
||
<div class="wrap-top">
|
||
<div class="wrap-top-inner">
|
||
<a class="top-btn" id="submitButton"><i class="icon icon-sure"></i>保存</a>
|
||
<a class="top-btn" onclick="art.dialog.close();"><i
|
||
class="icon icon-close"></i>关闭</a>
|
||
</div>
|
||
</div>
|
||
<div class="column margin50">
|
||
<h2 class="wrapper-tit">催办提醒</h2>
|
||
<div class="bd">
|
||
<table class="table-review" border="0" cellspacing="0"
|
||
cellpadding="0" id="myTable">
|
||
<!-- 存放隐藏域的区域 -->
|
||
<input type="hidden" id="stddId" name="stddId"
|
||
value="${fileLog.stddId}" />
|
||
<!-- 存放表单的区域 -->
|
||
<tr>
|
||
<th width="35%">被催办人<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
尹宾
|
||
</td>
|
||
|
||
</tr>
|
||
<tr>
|
||
<th>提醒方式<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<input
|
||
type="radio" datatype="*" nullmsg="请您选择发布状态" name="publishStatus"
|
||
id="publishStatus" value="PUB03" />短信 <input type="radio"
|
||
name="publishStatus" id="publishStatus" value="PUB04" />邮件
|
||
</td>
|
||
|
||
</tr>
|
||
<tr>
|
||
<th>催办内容<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<textarea rows="15" cols="60">请尽快办理!</textarea>
|
||
</td>
|
||
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
|
||
</body>
|
||
</html> |