汇联通执法队后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. <table class="table table-striped table-bordered table-hover">
  24. <tr>
  25. <th>服务类别</th>
  26. <td>${pageModel.serviceType }</td>
  27. </tr>
  28. <tr>
  29. <th>车辆</th>
  30. <td>${pageModel.vehicleId }</td>
  31. </tr>
  32. <tr>
  33. <th>备注</th>
  34. <td>${pageModel.remarks }</td>
  35. </tr>
  36. <tr>
  37. <th>状态</th>
  38. <td>${pageModel.status }</td>
  39. </tr>
  40. </table>
  41. </div>
  42. <div class="modal-footer">
  43. <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
  44. <!-- <a href="#" class="btn btn-sm btn-success" id="submit">保存</a> -->
  45. </div>
  46. </body>
  47. </html>