userActivity.jsp
4.11 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?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"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link href="${ctx }/resource/css/member.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/VIP.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/home.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/userActivity.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="${ctx }/resource/css/the-modal.css" type="text/css"/>
<link rel="stylesheet" type="text/css" href="${ctx }/resource/css/common.css" type="text/css"/>
<link href="${ctx }/resource/css/tab-slide.css" rel="stylesheet" type="text/css" />
</head>
<body >
<jsp:include page="${ctx }/view/common/header.jsp" />
<div class="bigbox">
<jsp:include page="${ctx }/view/common/menu.jsp" />
<div class="etlist rightbox0" style="margin-top: 28px">
<h2 style="text-align: left;">交易奖励</h2>
<div class="crossline"></div>
<ul class="tab">
<li class="selected">
<a href="${ctx }/user/rebateReward">交易奖励详情</a></li>
<li><a href="${ctx } /user/rebateRecord">历史记录</a></li>
<li><a href="${ctx } /user/promotions">推荐人详情</a></li>
<li><a href="${ctx }/user/userChangeReferee">变更推荐人</a></li>
<div class="clear"></div>
</ul>
<%-- <div class="tab-slide bottom-border">
<a class="tab-seletced" href="${ctx }/user/rebateReward">交易奖励详情</a>
<a class="attention" href="${ctx } /user/rebateRecord">历史记录</a>
<a class="attention" href="${ctx } /user/promotions">推荐人详情</a>
<a class="attention" href="${ctx }/user/userChangeReferee">变更推荐人</a>
</div> --%>
<div class="activity_detail">
<div class="activity_detail_rule">
<p>前一交易日获得交易奖励 = ∑( 直推单个会员交易额× 买家手续费率 × 标准梯度对应比率)</p>
<p class="price">=<span>
<c:if test="${current.rebate_balance == null }">0.00</c:if>
<c:if test="${current.rebate_balance != null }">
<fmt:formatNumber type="number" maxFractionDigits="2" minFractionDigits="2" value="${current.rebate_balance }" />
</c:if>
</span>元</p>
</div>
<div class="activity_detail_content">
<h3>奖励基准对应的相应比例:</h3>
<P>奖励基准(X)=直接单个会员交易额 × 买家手续费率(1‰)</P>
<table width="100%" cellpadding="0" cellspacing="0">
<thead>
<td>比例</td>
<td>奖励基准</td>
<td>奖励金额</td>
</thead>
<tbody>
<tr>
<td>50%</td>
<td>X<500元</td>
<td>250元以下</td>
</tr>
<tr>
<td>60%</td>
<td>500元≤X≤2000元</td>
<td>300元—1200元</td>
</tr>
<tr>
<td>70%</td>
<td>2000元≤X≤5000元</td>
<td>1400元—3500元</td>
</tr>
<tr>
<td>80%</td>
<td>5000元≤X≤10000元</td>
<td>4000元—8000元</td>
</tr>
<tr>
<td>90%</td>
<td>10000元≤X≤20000元</td>
<td>9000元—18000元</td>
</tr>
<tr>
<td>100%</td>
<td>X≥20000元</td>
<td>20000元以上</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>