managerApp.jsp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <%@ page language="java" 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,tools"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" action="activitiController.do?processComplete" layout="div" dialog="true">
  11. <input name="taskId" id="taskId" type="hidden" value="${taskId}" />
  12. <input name="bormoney" id="bormoney" type="hidden" vartype="B" value="${bormoney}">
  13. <input name="keys" id="keys" type="hidden" />
  14. <input name="values" id="values" type="hidden" />
  15. <input name="types" id="types" type="hidden" />
  16. <fieldset class="step">
  17. <div class="form">
  18. <label class="form">
  19. 出差申请人:
  20. </label>
  21. ${tbBusinesstrip.TSUser.realName}
  22. </div>
  23. <div class="form">
  24. <label class="form">
  25. 出差地点:
  26. </label>
  27. ${tbBusinesstrip.bustriplocale}
  28. </div>
  29. <div class="form">
  30. <label class="form">
  31. 开始时间:
  32. </label>
  33. ${tbBusinesstrip.begintime}
  34. </div>
  35. <div class="form">
  36. <label class="form">
  37. 结束时间:
  38. </label>
  39. ${tbBusinesstrip.begintime}
  40. </div>
  41. <div class="form">
  42. <label class="form">
  43. 审批意见:
  44. </label>
  45. <textarea rows="3" cols="20" vartype="S" name="reason" id="reason" /></textarea>
  46. </div>
  47. </fieldset>
  48. </t:formvalid>
  49. </body>
  50. </html>