page-render.js
4.15 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
105
106
107
108
109
110
111
112
113
114
115
var $ = require('yoho-jquery'),
dbClass = 'data-bind';
module.exports = function(callback) {
var productId = $('#productId').val();
var goodsId = $('#goodsId').val();
var productSkn = $('#productSkn').val();
if (productId && (goodsId || productSkn)) {
$.ajax({
type: 'POST',
url: '/product/detail/info',
data: {
id: productId,
goodsId: goodsId,
productSkn: productSkn
},
success: function(data) {
render(data);
callback(data);
}
});
}
};
function render(data) {
if (data.goodsPrice) {
$('.goods-price>.current-price').text(data.goodsPrice.currentPrice);
$('.goods-price>.previous-price').text(data.goodsPrice.previousPrice);
$('.goods-price').removeClass(dbClass);
}
if (!data.noLimitGoodsBtn) {
if (data.canGetLimitCode) {
$('.data-can-get-limit-code').removeClass(dbClass);
}
if (data.codeEmpty) {
$('.data-code-empty').removeClass(dbClass);
}
if (data.gotCode) {
$('.data-got-code').removeClass(dbClass);
}
}
if (data.studentPrice) {
$('.price-date').removeClass(dbClass);
$('.student-value').text('¥' + Math.round(studentPrice));
} else if (data.vipLevel) {
var li = $('.vip-level>li').first().remove();
for (var i = 0; i < data.vipLevel.list.length; i++) {
var item = data.vipLevel.list[i];
var itemLi = li.clone();
if (item.currentLevel) {
itemLi.addClass('current-level');
}
itemLi.find('.vip-price').text(item.text);
$('.vip-level').append(itemLi);
}
$('.vip-level').removeClass(dbClass);
}
if (data.goodsDiscount && data.goodsDiscount.list && data.goodsDiscount.list.length) {
var shortText = $('#goodsDiscount>.short-text').remove();
var liText = $('#goodsDiscount>.discount-folder>.folder-item').remove();
for (var i = 0; i < data.goodsDiscount.list.length; i++) {
var discount = data.goodsDiscount.list[i];
var itemText = i === 0 ? shortText.clone() : liText.clone();
if (discount.text) {
if (i === 0) {
itemText.text(discount.text).append('<span class="icon-down iconfont dropdown"></span>').prependTo('#goodsDiscount');
} else {
itemText.text(discount.text).appendTo('#goodsDiscount>.discount-folder');
}
}
}
$('#goodsDiscount').removeClass('data-bind');
}
if (data.cartInfo) {
$('.num-incart').attr('href', data.cartInfo.cartUrl);
if (data.cartInfo.addToCartUrl) {
$('.add-to-cart-url').text(data.tickets ? '立即购买' : '加入购物车').removeClass(dbClass);
}
if (data.cartInfo.soldOut) {
$('#soldOut').removeClass(dbClass);
}
if (data.cartInfo.notForSale) {
$('#notForSale').removeClass(dbClass);
}
if (data.cartInfo.limitNotForSale) {
$('#limitNotForSale').removeClass(dbClass);
}
if (data.cartInfo.limitNotForSale) {
$('#limitNotForSale').removeClass(dbClass);
}
if (data.cartInfo.canBuyLimit) {
$('.can-buy-limit').removeClass(dbClass);
}
if (data.cartInfo.noLimitCode) {
$('#noLimitCode').removeClass(dbClass);
}
$('.cart-bar').removeClass('data-bind');
$('#limitCodeUrl').val(data.cartInfo.limitCodeUrl);
$('#limitProductPay').val(data.cartInfo.limitProductPay);
if (data.cartInfo.limitProductCode) {
$('#limitProductCode').val(data.cartInfo.limitProductCode).removeClass(dbClass);
}
}
if (data.isCollect) {
$('#likeBtn').addClass('liked');
}
if (data.tickets) {
$('#buyNowForm').attr('action', data.ticketsConfirm).removeClass(dbClass);
}
if (data.loginUrl) {
$('#loginUrl').val(data.loginUrl).removeClass(dbClass);
}
$('.' + dbClass).remove();
}