carScheduleArchiveAdd.jsp 1.2 KB

12345678910111213141516171819202122232425262728293031
  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="carScheduleController.do?doArchiveSectionAdd">
  14. <input id="scheduleId" name="scheduleId" type="hidden" value="${schedule.id}"/>
  15. <table style="width: 600px;" 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. <input id="date" name="date" type="text" style="width: 150px" class="Wdate"
  24. onClick="WdatePicker({dateFmt:'yyyy-MM-dd'})" datatype="*" ignore="checked"/>
  25. <span class="Validform_checktip"></span>
  26. <label class="Validform_label" style="display: none;">日期</label>
  27. </td>
  28. </tr>
  29. </table>
  30. </t:formvalid>
  31. </body>