pnrBindResult.jsp
2.16 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>提示页面</title>
<link href="${ctx}/resource/css/common.css" rel="stylesheet" type="text/css" />
<link href="${ctx}/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx}/resource/css/detail.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${ctx }/resource/js/utils/jquery/jquery-1.11.3.min.js"></script>
<style type="text/css">
.minheight {
min-height: 250px;
text-align: center;
margin-top: 90px;
font-size: 30px;
}
.title {
font-weight: 600;
font-size: 27px;
margin: 0 0 20px 0;
}
.detail {
font-size: 20px;
padding: 10px 0;
}
.jump-btn {
padding: 8px 25px;
background: rgb(231, 36, 38);
color: #fff;
border: 0;
border-radius: 5px;
margin-top: 20px;
font-size: 16px;
}
</style>
</head>
<body>
<jsp:include page="${ctx }/view/common/header.jsp" />
<!-- 成功页面 -->
<c:if test="${resultMap.resultCode=='1'}">
<div id="successPage" class="minheight ">
<h2 class="title">${resultMap.resultMsg}</h2>
<c:if test="${resultMap.pointCode=='1'}">
<p class="detail">
我们已将 <span style="font-size: 26px">20</span> 配售额度发放到您的账户中,请注意查收!
</p>
</c:if>
<button class="jump-btn" onclick="javascript:window.location.href='/user/goods/list'; ">立即配售</button>
</div>
</c:if>
<!-- 失败页面 -->
<c:if test="${resultMap.resultCode=='0'}">
<div id="failedPage" class="minheight ">
<h2 class="title">${msg }</h2>
<p class="detail">请您进入会员中心重新绑卡,否则您将无法正常进行资金操作。</p>
<p class="detail">如有任何疑问请联系客服:400-969-0800</p>
<button class="jump-btn" onclick="javascript:window.history.back(-1); ">立即绑卡</button>
</div>
</c:if>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>