...
|
...
|
@@ -17,7 +17,9 @@ var $sortItem = $('.sort-item'), |
|
|
$stuYear = $('#stu-entrance-year-show'),
|
|
|
$stuYearWrap = $stuYear.parent(),
|
|
|
$identityForm = $('#identity-form'),
|
|
|
$identityWrap = $('#identity-wrap');
|
|
|
$identityWrap = $('#identity-wrap'),
|
|
|
$rightsItem = $('#stuRights .stu-rights-item'),
|
|
|
rightsText = '';
|
|
|
|
|
|
var $rightDia = $('#rights-dia'),
|
|
|
$couponDia = $('#coupon-dia');
|
...
|
...
|
@@ -444,19 +446,17 @@ $couponDia.on('click', function() { |
|
|
createStuDialog('stu-agree-dialog', cont);
|
|
|
});
|
|
|
|
|
|
$rightsItem.each(function(index,ele) {
|
|
|
var title = $(ele).find('.item-title').html(),
|
|
|
detail = $(ele).find('.item-detail').html(),
|
|
|
i = Number(index) + 1;
|
|
|
|
|
|
rightsText += '<p>权益' + i + ':' + title + '</p><p>' + detail + '</p>';
|
|
|
i !== $rightsItem.length ? rightsText+='<br>' : '';
|
|
|
});
|
|
|
|
|
|
$rightDia.on('click', function() {
|
|
|
var cont = '<h3 class="dia-title">特权详细说明</h3>' +
|
|
|
'<p>权益1:认证立赠100有货币</p>' +
|
|
|
'<p>认证成功,立即赠送100有货币。</p><br>' +
|
|
|
'<p>权益2:新品立享9折</p>' +
|
|
|
'<p>学生购买指定原价新品时,可立即享受9折优惠,此折扣与VIP折扣不可同时享受。</p><br>' +
|
|
|
'<p>权益3:每1元返1个有货币</p>' +
|
|
|
'<p>学生购买指定商品时,每1元返1个有货币(以商品的实际成交金额计算);</p>' +
|
|
|
'<p>有货币返还时间:确认收货7日后,系统自动将对应数量的有货币返还至购买账户;</p>' +
|
|
|
'<p>有货币有效期:获得当日至次年12月31日,逾期自动作废;</p>' +
|
|
|
'<p>查看有货币:登录后,点击“个人中心”在“我的有货币”中可以查看有货币余额及明细。</p><br>' +
|
|
|
'<p>权益4:分期付款</p>' +
|
|
|
'<p>开通有货分期后,可享受部分商品30天延后付款,最长6个月的分期付款,开启任性购物模式。</p>';
|
|
|
var cont = '<h3 class="dia-title">特权详细说明</h3>' + rightsText;
|
|
|
|
|
|
createStuDialog('stu-rights-dialog', cont);
|
|
|
|
...
|
...
|
@@ -658,26 +658,6 @@ $(function() { |
|
|
}, 100);
|
|
|
|
|
|
|
|
|
var rightsFirst = '<div class="item-content hide">' +
|
|
|
'<p class="item-title">认证立赠100有货币</p>' +
|
|
|
'<p>认证成功,立即赠送100有货币。</p></div>';
|
|
|
|
|
|
var rightsSecond = '<div class="item-content hide">' +
|
|
|
'<p class="item-title">新品立享9折</p>' +
|
|
|
'<p>学生购买指定原价新品时,可立即享受9折优惠,此折扣与VIP折扣不可同时享受;</p></div>';
|
|
|
|
|
|
var rightsThird = '<div class="item-content hide">' +
|
|
|
'<p class="item-title">每1元返1个有货币</p>' +
|
|
|
'<p>学生购买指定商品时,每1元返1个有货币(以商品的实际成交金额计算);</p>' +
|
|
|
'<p>有货币返还时间:确认收货7日后,系统自动将对应数量的有货币返还至购买账户;</p>' +
|
|
|
'<p>有货币有效期:获得当日至次年12月31日,逾期自动作废;</p>' +
|
|
|
'<p>查看有货币:登录后,点击“个人中心”在“我的有货币”中可以查看有货币余额及明细。</p></div>';
|
|
|
|
|
|
var rightsFourth = '<div class="item-content hide">' +
|
|
|
'<p class="item-title">分期付款</p>' +
|
|
|
'<p>开通有货分期后,可享受部分商品30天延后付款,最长6个月的分期付款,开启任性购物模式。</p></div>';
|
|
|
|
|
|
|
|
|
$('.coupon > a').each(function() {
|
|
|
couponIds.push($(this).attr('data-id'));
|
|
|
});
|
...
|
...
|
@@ -811,14 +791,9 @@ $(function() { |
|
|
});
|
|
|
|
|
|
// 学生权益,悬浮显示内容
|
|
|
$('#stuRights .stu-rights-item:eq(0)').append(rightsFirst);
|
|
|
$('#stuRights .stu-rights-item:eq(1)').append(rightsSecond);
|
|
|
$('#stuRights .stu-rights-item:eq(2)').append(rightsThird);
|
|
|
$('#stuRights .stu-rights-item:eq(3)').append(rightsFourth);
|
|
|
|
|
|
// 悬浮效果
|
|
|
$('#stuRights .stu-rights-item:eq(0), #stuRights .stu-rights-item:eq(1),' +
|
|
|
'#stuRights .stu-rights-item:eq(2), #stuRights .stu-rights-item:eq(3)').hover(function() {
|
|
|
$rightsItem.hover(function() {
|
|
|
var content = $(this).find('.item-content');
|
|
|
|
|
|
var gapHeight;
|
...
|
...
|
|