jeecgDemo-check.jsp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>jeecg_demo</title>
  7. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  8. <script type="text/javascript">
  9. //编写自定义JS代码
  10. </script>
  11. </head>
  12. <body>
  13. <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="jeecgListDemoController.do?doCheck" >
  14. <input id="id" name="id" type="hidden" value="${jeecgDemoPage.id }">
  15. <table style="width:320px;" cellpadding="0" cellspacing="1" class="formtable">
  16. <tr>
  17. <td align="right">
  18. <label class="Validform_label">
  19. 入职状态:
  20. </label>
  21. </td>
  22. <td class="value">
  23. <t:dictSelect field="status" type="radio" typeGroupCode="sf_yn" defaultVal="Y" hasLabel="false" title="入职状态" ></t:dictSelect>
  24. <span class="Validform_checktip"></span>
  25. <label class="Validform_label" style="display: none;">入职状态</label>
  26. </td>
  27. </tr>
  28. <tr>
  29. <td align="right">
  30. <label class="Validform_label">
  31. 审核意见:
  32. </label>
  33. </td>
  34. <td class="value">
  35. <textarea name="content" rows="6" cols="36"></textarea>
  36. <span class="Validform_checktip"></span>
  37. </td>
  38. </tr>
  39. </table>
  40. </t:formvalid>
  41. </body>