汇联通执法队后台管理系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

finish.jsp 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <%@ page contentType="text/html;charset=utf-8"%>
  3. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  4. <html>
  5. <head>
  6. <meta http-equiv="expires" content="0" />
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <script type="text/javascript">
  9. $(function(){
  10. $.ajaxSetup ({ cache: false});
  11. $("#submit").click(function(){
  12. $("#myManage").triggerHandler("taijiModalPost",[$("#myForm"),{table:"none"}]);
  13. });
  14. });
  15. </script>
  16. </head>
  17. <body>
  18. <div class="modal-header">
  19. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  20. <h4 class="modal-title">结束服务</h4>
  21. </div>
  22. <div class="modal-body">
  23. <form:form modelAttribute="pageModel" id="myForm" name="myForm" cssClass="form-horizontal" action="${rootUrl}app/service/request/inquiry/finish" method="post">
  24. <form:hidden path="id"/>
  25. <table class="table table-striped table-bordered table-hover">
  26. <tr>
  27. <th>服务类别</th>
  28. <td>${pageModel.serviceType }</td>
  29. </tr>
  30. <tr>
  31. <th>车辆</th>
  32. <td>${pageModel.vehicleId }</td>
  33. </tr>
  34. <tr>
  35. <th>备注</th>
  36. <td>${pageModel.remarks }</td>
  37. </tr>
  38. </table>
  39. </form:form>
  40. </div>
  41. <div class="modal-footer">
  42. <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
  43. <a href="#" class="btn btn-sm btn-success" id="submit">结束服务</a>
  44. </div>
  45. </body>
  46. </html>