文字列フォーマットは2021-04-18 12:23:26標準時間フォーマットになります.

754 ワード

文字列フォーマットは2021-04-18 12:23:26標準時間フォーマットSun Ar 18 2021:23:26 GMT+0800(中国標準時間)と2021-4-18 12:23:26
キーコード:
this.datestring='2021-04-18 12:23:26'
 this.date=new Date(this.datestring.substr(0,4),  // 
 //new Date().getMonth(),
 this.datestring.substr(5,2)-1, // 
 this.datestring.substr(8,2), // 
 this.datestring.substr(11,2), // 
 this.datestring.substr(14,2), // 
 this.datestring.substr(17,2))// 

 this.date1=this.GMTToStr(this.date)
},

mounted() {

},
methods:{
  GMTToStr(time){
let date = new Date(time)
let Str=date.getFullYear() + '-' +
(date.getMonth() + 1) + '-' +
date.getDate() + ' ' +
date.getHours() + ':' +
date.getMinutes() + ':' +
date.getSeconds()
return Str
}