将时间(2021-03-13 00:00:00)格式化时间戳

Math.round(new Date(val) / 1000)

main.js

Vue.prototype.$timeStamp = function(val) {
	let times = Math.round(new Date(val) / 1000)
	return times
}

使用:

{{  $u.timeFormat($timeStamp(res.time), 'yyyy-mm-dd hh:MM:ss')  }}

格式化到毫秒可以参考:js时间格式化

Logo

前往低代码交流专区

更多推荐