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">
- <form:form modelAttribute="pageModel" id="myForm" name="myForm" cssClass="form-horizontal" action="${rootUrl}app/service/request/inquiry/finish" method="post">
- <form:hidden path="id"/>
- <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>
- </table>
- </form:form>
-
- </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>
|