index.html === >
<view class="countDownTimeView pull-left countDownAllView text-left">
<text>倒计时:</text>
<text class="voteText countDownTimeText">{
{countDownHour}}</text> :
<text class="voteText countDownTimeText">{
{countDownMinute}}</text> :
<text class="voteText countDownTimeText">{
{countDownSecond}}</text>
</view>
util.js === >
const formatTime = date => {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const minute = date.getMinutes()
const second = date.getSeconds()
return [year, month, day].map(formatNumber).join('/') + '