clearingpoint-add.jsp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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="ClearingPointController.do?doAdd">
  14. <input id="id" name="id" type="hidden" value="${archivesPlace.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="name" name="name" type="text" style="width: 150px" class="inputxt" readonly="readonly" placeholder="请选择清运点名称"
  24. datatype="*" ignore="checked" onclick="openUserSelect()"/>
  25. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="userSearch" onclick="openUserSelect()">选择</a>
  26. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="userRedo" onclick="callbackCleanUser()">清除</a>
  27. <span class="Validform_checktip"></span>
  28. <label class="Validform_label" style="display: none;">清运点名称</label>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td align="right">
  33. <label class="Validform_label">
  34. 最早入场时间:
  35. </label>
  36. </td>
  37. <td class="value">
  38. <input id="prepTime" name="prepTime" type="text" style="width: 150px" class="Wdate"
  39. onClick="WdatePicker({dateFmt:'HH:mm'})" datatype="*" autocomplete="off" ignore="checked"/>
  40. <span class="Validform_checktip"></span>
  41. <label class="Validform_label" style="display: none;">最早入场时间</label>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td align="right">
  46. <label class="Validform_label">
  47. 最晚入场时间:
  48. </label>
  49. </td>
  50. <td class="value">
  51. <input id="lateTime" name="lateTime" type="text" style="width: 150px" class="Wdate"
  52. onClick="WdatePicker({dateFmt:'HH:mm'})" datatype="*" autocomplete="off" ignore="checked"/>
  53. <span class="Validform_checktip"></span>
  54. <label class="Validform_label" style="display: none;">最晚入场时间</label>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td align="right">
  59. <label class="Validform_label">
  60. 状态:
  61. </label>
  62. </td>
  63. <td class="value">
  64. <t:dictSelect field="timeStatus" type="list" typeGroupCode="clearing_point"
  65. dictField="code"
  66. dictText="name"
  67. defaultVal="1" hasLabel="false" title="状态" ></t:dictSelect>
  68. <span class="Validform_checktip"></span>
  69. <label class="Validform_label" style="display: none;">状态</label>
  70. </td>
  71. </tr>
  72. </table>
  73. </t:formvalid>
  74. </body>
  75. <script src = "webpage/cn/com/lzt/clearingpoint/clearingpoint-addorupdate.js"></script>