| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <%@ 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>jeecg_demo</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="jeecgListDemoController.do?doCheck" >
- <input id="id" name="id" type="hidden" value="${jeecgDemoPage.id }">
- <table style="width:320px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 入职状态:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="status" type="radio" typeGroupCode="sf_yn" defaultVal="Y" hasLabel="false" title="入职状态" ></t:dictSelect>
- <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">
- <textarea name="content" rows="6" cols="36"></textarea>
- <span class="Validform_checktip"></span>
- </td>
- </tr>
- </table>
- </t:formvalid>
- </body>
|