Authored by 张丽霞

倒计时bug

... ... @@ -52,7 +52,7 @@ function downCount(options) {
// set to DOM
$countdownContainer.removeClass('hide');
if (hours === 0) {
if (hours === '00') {
$countDownHours.text('剩余' + minutes + ':' + seconds);
} else {
$countDownHours.text('剩余' + hours + ':' + minutes + ':' + seconds);
... ...