1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <%@ page contentType="text/html;charset=utf-8"%>
- <%@ include file="/WEB-INF/jsp/include.jsp"%>
- <html>
- <head>
- <meta http-equiv="expires" content="0" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <script type="text/javascript">
- // $(function(){
- // $.ajaxSetup ({ cache: false});
- // $("#submit").click(function(){
- // $("#myManage").triggerHandler("taijiModalPost",[$("#myForm"),{table:"none"}]);
- // });
- // });
- </script>
- </head>
- <body>
-
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
- <h4 class="modal-title">服务申请详情</h4>
- </div>
-
- <div class="modal-body">
- <table class="table table-striped table-bordered table-hover">
- <tr>
- <th>服务类别</th>
- <td>${pageModel.serviceType }</td>
- </tr>
- <tr>
- <th>车辆</th>
- <td>${pageModel.vehicleId }</td>
- </tr>
- <tr>
- <th>备注</th>
- <td>${pageModel.remarks }</td>
- </tr>
- <tr>
- <th>状态</th>
- <td>${pageModel.status }</td>
- </tr>
- </table>
- </div>
- <div class="modal-footer">
- <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
- <!-- <a href="#" class="btn btn-sm btn-success" id="submit">保存</a> -->
- </div>
-
- </body>
- </html>
|