...
|
...
|
@@ -18,7 +18,7 @@ var nowTime = 0; |
|
|
var startTime = 0;
|
|
|
|
|
|
var endTime = 0,
|
|
|
diffTime = 0;// 误差时间
|
|
|
diffTime = 0; // 误差时间
|
|
|
|
|
|
var dateText = 0,
|
|
|
newDate = 0,
|
...
|
...
|
@@ -74,7 +74,7 @@ seckillObj = { |
|
|
|
|
|
$(
|
|
|
function() {
|
|
|
$('#goodsDiscount').hide();// 隐藏折扣楼层
|
|
|
$('#goodsDiscount').hide(); // 隐藏折扣楼层
|
|
|
$('.cart-bar').hide();
|
|
|
$('.current-price').hide();
|
|
|
var ajaxUrl = '/product/seckillDetail/seckillData/' + $('#productSkn').val();
|
...
|
...
|
@@ -109,7 +109,7 @@ $( |
|
|
'</div>'
|
|
|
);
|
|
|
$('.current-price').text('¥' + data.secKillPrice).show();
|
|
|
$('.price-date').append(
|
|
|
$('.price-date').eq(0).append(
|
|
|
'<div class="seckill-time notStart">' +
|
|
|
'<span class="seckill-time-pic">秒杀预告</span>' +
|
|
|
'<span class="seckill-time-c">月日</span>' +
|
...
|
...
|
@@ -154,10 +154,10 @@ $( |
|
|
}
|
|
|
);
|
|
|
|
|
|
seckHide();// 非秒杀库存置灰
|
|
|
seckHide(); // 非秒杀库存置灰
|
|
|
|
|
|
// 插入倒计时
|
|
|
addTimeout($('.price-date'));
|
|
|
addTimeout($('.price-date').eq(0));
|
|
|
addTimeout($('.text-info'));
|
|
|
secKillPrice = toDecimal2(data.secKillPrice);
|
|
|
$('.current-price').text('¥' + secKillPrice).show();
|
...
|
...
|
@@ -191,7 +191,7 @@ $( |
|
|
|
|
|
// nowTime = Date.parse(new Date()) / 1000;
|
|
|
|
|
|
nowTime = diffTime;// 使用请求服务器时间作为当前时间
|
|
|
nowTime = diffTime; // 使用请求服务器时间作为当前时间
|
|
|
|
|
|
if (startTime > nowTime) {
|
|
|
offsetTime = startTime - nowTime;
|
...
|
...
|
|