time(){

  var _this = this;

  let yy = new Date().getFullYear();

  let mm = new Date().getMonth()+1;

  let dd = new Date().getDate();

  let hh = new Date().getHours();

  let mf = new Date().getMinutes()<10 ? '0'+new Date().getMinutes() : new Date().getMinutes();

  let ss = new Date().getSeconds()<10 ? '0'+new Date().getSeconds() : new Date().getSeconds();

  _this.gettime = yy+'-'+mm+'-'+dd+' '+hh+':'+mf+':'+ss;

},

posted on 2019-12-02 17:29  Charonっ  阅读(98)  评论(0编辑  收藏  举报