Commit 9bd3736e by 周志凯

time keep float

1 parent a2a32d47
......@@ -1131,7 +1131,7 @@
computed: {
totalTime() {
const { startTiming, endTiming } = this
return Math.floor((endTiming - startTiming) / 1000)
return (endTiming - startTiming) / 1000
// return this.formatDateToStamp(endTiming) - this.formatDateToStamp(startTiming)
}
},
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!