bustrip.jsp 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" layout="table" dialog="true" action="busController.do?saveBustrip">
  11. <input type="hidden" name="id" id="id" value="${bustrip.id}">
  12. <input name="code" id="code" type="hidden" value="${bustrip.TSPrjstatus.code}" />
  13. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
  14. <tr>
  15. <td align="right" height="40" width="15%">
  16. <label class="Validform_label">出差地点:</label>
  17. </td>
  18. <td class="value" width="85%">
  19. <input name="bustriplocale" value="${bustrip.bustriplocale}" datatype="s2-10" class="inputxt" >
  20. <span class="Validform_checktip"></span>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td align="right" height="40">
  25. <label class="Validform_label"> 开始时间:</label>
  26. </td>
  27. <td class="value">
  28. <input name="begintime" id="begintime" style="width: 150px" class="Wdate" value="${bustrip.begintime}" type="text" onFocus="WdatePicker({maxDate:'#F{$dp.$D(\'endtime\')}'})"/>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td align="right" height="40">
  33. <label class="Validform_label"> 结束时间:</label>
  34. </td>
  35. <td class="value">
  36. <input name="endtime" id="endtime" style="width: 150px" value="${bustrip.endtime}" class="Wdate" type="text" onFocus="WdatePicker({minDate:'#F{$dp.$D(\'begintime\')}'})"/>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td align="right" height="40">
  41. <label class="Validform_label"> 出行方式:</label>
  42. </td>
  43. <td class="value">
  44. <select name="goouttype">
  45. <option value="1">
  46. 火车
  47. </option>
  48. <option value="2">
  49. 汽车
  50. </option>
  51. <option value="3">
  52. 飞机
  53. </option>
  54. </select>
  55. <span class="Validform_checktip"></span>
  56. </td>
  57. </tr>
  58. <tr>
  59. <td align="right" height="40">
  60. <label class="Validform_label"> 出差事由:</label>
  61. </td>
  62. <td class="value">
  63. <input name="bustripreson" value="${bustrip.bustripreson}" rows="4" cols="30" datatype="*" class="inputxt" >
  64. <span class="Validform_checktip"></span>
  65. </td>
  66. </tr>
  67. <tr>
  68. <td align="right" height="40">
  69. <label class="Validform_label"> 出差费用:</label>
  70. </td>
  71. <td class="value">
  72. <input name="bustripmoney" value="${bustrip.bustripmoney}" datatype="d" class="inputxt">
  73. <span class="Validform_checktip"></span>
  74. </td>
  75. </tr>
  76. </table>
  77. </t:formvalid>
  78. </body>
  79. </html>