| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <%@ 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="ClearingPointController.do?doAdd">
- <input id="id" name="id" type="hidden" value="${archivesPlace.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="name" name="name" value="${archivesPlace.name}" type="text" style="width: 150px" class="inputxt" readonly="readonly" placeholder="请选择清运点名称"
- datatype="*" ignore="checked" onclick="openUserSelect()" />
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="userSearch" onclick="openUserSelect()">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="userRedo" onclick="callbackCleanUser()">清除</a>
- <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">
- <input id="prepTime" name="prepTime" value="${archivesPlace.prepTime}" type="text" style="width: 150px" class="Wdate"
- onClick="WdatePicker({dateFmt:'HH:mm'})" datatype="*" autocomplete="off" ignore="checked"/>
- <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">
- <input id="lateTime" name="lateTime" value="${archivesPlace.lateTime}" type="text" style="width: 150px" class="Wdate"
- onClick="WdatePicker({dateFmt:'HH:mm'})" datatype="*" autocomplete="off" ignore="checked"/>
- <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">
- <t:dictSelect field="timeStatus" type="list" typeGroupCode="clearing_point"
- dictField="code"
- dictText="name" defaultVal="${archivesPlace.timeStatus}" hasLabel="false" title="状态" ></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">状态</label>
- </td>
- </tr>
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/clearingpoint/clearingpoint-addorupdate.js"></script>
|