autoFormStyle-add.jsp 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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>表单样式表</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="autoFormStyleController.do?doAdd" tiptype="1">
  14. <input id="id" name="id" type="hidden" value="${autoFormStylePage.id }">
  15. <input id="createName" name="createName" type="hidden" value="${autoFormStylePage.createName }">
  16. <input id="createBy" name="createBy" type="hidden" value="${autoFormStylePage.createBy }">
  17. <input id="createDate" name="createDate" type="hidden" value="${autoFormStylePage.createDate }">
  18. <input id="updateName" name="updateName" type="hidden" value="${autoFormStylePage.updateName }">
  19. <input id="updateBy" name="updateBy" type="hidden" value="${autoFormStylePage.updateBy }">
  20. <input id="updateDate" name="updateDate" type="hidden" value="${autoFormStylePage.updateDate }">
  21. <input id="sysOrgCode" name="sysOrgCode" type="hidden" value="${autoFormStylePage.sysOrgCode }">
  22. <input id="sysCompanyCode" name="sysCompanyCode" type="hidden" value="${autoFormStylePage.sysCompanyCode }">
  23. <table style="width: 100%;" cellpadding="0" cellspacing="1" class="formtable">
  24. <tr>
  25. <td align="right" style="width:15%;">
  26. <label class="Validform_label">
  27. 表单名称:
  28. </label>
  29. </td>
  30. <td class="value" style="width:85%;">
  31. <input id="styleDesc" name="styleDesc" type="text" style="width: 25%" class="inputxt" datatype="*" ajaxurl="autoFormStyleController.do?checkStyleNm">
  32. <span class="Validform_checktip"></span>
  33. <label class="Validform_label" style="display: none;">表单名称</label>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td align="right">
  38. <label class="Validform_label">
  39. 表单内容:
  40. </label>
  41. </td>
  42. <td class="value">
  43. <textarea id="styleContent" name="styleContent" rows="30" cols="245" datatype="*"></textarea>
  44. </td>
  45. </tr>
  46. </table>
  47. </t:formvalid>
  48. </body>
  49. </html>