1234567891011121314151617181920212223242526272829303132 |
- <%@page language="java" 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" %>
- <c:set var="ctx" value="${pageContext.request.contextPath}"/>
- <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
- <script type="text/javascript">
- function afterOnload(){
- var afterLoadJs=[
- '${ctx}/js/hotent/formdata.js',
- '${ctx}/js/hotent/subform.js'
- ];
- ScriptMgr.load({
- scripts : afterLoadJs
- });
- }
- </script>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0" type="main">
- <tr>
- <th width="20%">上级ID: </th>
- <td><input type="text" id="superiorid" name="superiorid" value="${sysPlanPush.superiorid}" class="inputText" validate="{required:false,number:true }" /></td>
- </tr>
- <tr>
- <th width="20%">创建日志人ID: </th>
- <td><input type="text" id="createplanid" name="createplanid" value="${sysPlanPush.createplanid}" class="inputText" validate="{required:false,number:true }" /></td>
- </tr>
- <tr>
- <th width="20%">PLANID: </th>
- <td><input type="text" id="planid" name="planid" value="${sysPlanPush.planid}" class="inputText" validate="{required:false,number:true }" /></td>
- </tr>
- </table>
- <input type="hidden" name="pushid" value="${sysPlanPush.pushid}" />
|