| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>审核组成员</title>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="budgetVerifyGroupMemberController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${budgetVerifyGroupMemberPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 分组id:
- </label>
- </td>
- <td class="value">
- <input id="groupId" name="groupId" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetVerifyGroupMemberPage.groupId}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">分组id</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 审核人id:
- </label>
- </td>
- <td class="value">
- <input id="userId" name="userId" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetVerifyGroupMemberPage.userId}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">审核人id</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 审核人姓名:
- </label>
- </td>
- <td class="value">
- <input id="realName" name="realName" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetVerifyGroupMemberPage.realName}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">审核人姓名</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 排序号:
- </label>
- </td>
- <td class="value">
- <input id="seqNo" name="seqNo" type="text" style="width: 150px" class="inputxt" datatype="n" ignore="ignore" value='${budgetVerifyGroupMemberPage.seqNo}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">排序号</label>
- </td>
- </tr>
-
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/budget/verifygroup/budgetVerifyGroupMember.js"></script>
|