...
|
...
|
@@ -828,13 +828,16 @@ function activityPlan() { |
|
|
let templateId = $('.template-id').val();
|
|
|
|
|
|
if (atlBo) {
|
|
|
let curTime = Math.round(new Date() / 1000);
|
|
|
$.ajax({
|
|
|
url: '//m.yohobuy.com/activity/feature/getServerTimes',
|
|
|
dataType: 'jsonp'
|
|
|
}).then(function(curTime) {
|
|
|
let showTimes = [];
|
|
|
let planTimes = [];
|
|
|
let localUrl = '';
|
|
|
let query = '';
|
|
|
|
|
|
qs.timeStamp = curTime;
|
|
|
qs.timeStamp = curTime || Math.round(new Date() / 1000);
|
|
|
|
|
|
Object.keys(qs).map((key, index) => {
|
|
|
if (index === 0) {
|
...
|
...
|
@@ -875,6 +878,7 @@ function activityPlan() { |
|
|
clearTimeout(countDown);
|
|
|
}, time);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|