|
@@ -299,7 +299,6 @@ export default {
|
|
|
},
|
|
|
formatTimeHHMMSSsss(timestr){
|
|
|
const date = new Date(timestr) // 时间戳为10位需*1000,时间戳为13位的话不需乘1000
|
|
|
- console.log('ddddddd')
|
|
|
const H = (date.getHours() < 10 ? '0' + (date.getHours()) : date.getHours()) + ':'
|
|
|
const m = (date.getMinutes() < 10 ? '0' + (date.getMinutes()) : date.getMinutes()) + ':'
|
|
|
const s = (date.getSeconds() < 10 ? '0' + (date.getSeconds()) : date.getSeconds())+ '.'
|