Authored by 沈志敏

fix bug

... ... @@ -132,7 +132,7 @@ module.exports = (Vue) => {
let D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' ';
let h = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
let m = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()) + ':';
let s = date.getSeconds();
let s = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
return Y + M + D + h + m + s;
});
... ...
... ... @@ -26,7 +26,6 @@ yoho.ready(() => {
});
yoho.showLoading(false);
// util.visibilitychange();
window.addEventListener('touchmove', function() {
var topHeight = document.body.scrollTop;
... ...