| 12345678910111213141516171819202122232425262728293031 |
- <%@ 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="carScheduleController.do?doArchiveSectionAdd">
- <input id="scheduleId" name="scheduleId" type="hidden" value="${schedule.id}"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 日期:
- </label>
- </td>
- <td class="value">
- <input id="date" name="date" type="text" style="width: 150px" class="Wdate"
- onClick="WdatePicker({dateFmt:'yyyy-MM-dd'})" datatype="*" ignore="checked"/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">日期</label>
- </td>
- </tr>
- </table>
- </t:formvalid>
- </body>
|