@@ -618,7 +618,8 @@ export default {
topic.courseArray = [];
topic.array.forEach(async i => {
let data = await this.getCourse(i)
- data.update_at = new Date(data.update_at).toLocaleString().replace('/', '-')
+ console.log(data.update_at)
+ data.update_at = new Date(data.update_at).toLocaleString('zh-CN', {year: 'numeric',month: '2-digit',day: '2-digit',hour: '2-digit',minute: '2-digit',second: '2-digit',hour12: false}).replace(/\//g,'-')
topic.courseArray.push(data)
})
} else if (topic.type == 7) {