outlet-will-start.page.js
354 Bytes
/**
* Created by runner on 16/6/14.
*/
var $ = require('yoho-jquery'),
Countdown = require('./outlet/countdown'),
tip = require('../plugin/tip');
var el = $('.cd-lite');
require('../common');
new Countdown.Countdown({
el: el
});
$('.back-ground-white').on('click', function() {
tip.show('活动即将开始');
return false;
});