pay_result.jsp 907 Bytes
<%@ 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>