watch: {
row(val) {
this.liveTime = []
// 当时间不为空时才回显
if (val.liveBeginTime && val.liveEndTime) {
this.liveTime.push(new Date(val.liveBeginTime).format('yyyy-MM-dd HH:mm:ss')) // 回显开始时间
this.liveTime.push(new Date(val.liveEndTime).format('yyyy-MM-dd HH:mm:ss')) // 回显结束时间
}
}
}
01-15
3396
04-21
1万+