在当前时间上加30分钟vue将时间戳转为日期格式
1. 如果后台返回的是一个数组则需要使用遍历 forEach 实例如下:
2. 使用 Date.parse() 将时间转换为时间戳 然后就可以对相应的时间进行比较操作
query() {
var path = '';
this.isAppoint ? path="/trading/iaAppointment/getInfo" : path="/busi/iaManagementRight/getManageInfo";
this.$get(path, {
pageNum: this.pageNum,
pageSize: this.pageSize,
status: this.type
}).then(res => {
this.data = res.data || [];
this.total = res.msg*1;
this.data.forEach(ele =>{
let appointmentEndTime =ele.appointmentEndTime;
if (appointmentEndTime !== null) {
let endtime = Date.parse(new Date(appointmentEndTime).toString());
console.log("转换为预约时间戳之后的时间戳:", endtime);
console.log("获取当前时间:",new Date());
let nowtime = Date.parse(new Date().toString());
console.log("当前时间的时间戳:",nowtime);
this.nowtime = nowtime;
this.endtime = endtime;
}
});
});
},