pay_result.jsp
907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>科路得</title>
<style type="text/css">
*{
margin:0 auto;
padding: 0;
}
.content{
min-height: 200px;
}
.content .show{
margin-top:20px;
width: 32%;
}
</style>
</head>
<body>
<jsp:include page="/include/header.jsp" flush="true"/>
<div class="content">
<div class="show">
<p>订单ID: ${orderId}</p>
<p>支付结果: ${paymentResult}</p>
<p>支付金额: ${totalAmount}</p>
<p><a href="/query_order?orderId=${orderId}">查看订单</a></p>
<p><a href="/notice.jsp">案件详情</a></p>
</div>
</div>
<jsp:include page="/include/footer.jsp" flush="true"/>
</body>
</html>