Commit fc76d7b6 by zhanghaozhe

Merge branch 'ai-test' into dev

parents 1bcb26ed e19e4bc0
...@@ -103,7 +103,7 @@ class Exam extends Component { ...@@ -103,7 +103,7 @@ class Exam extends Component {
answer, answer,
recordId: data[0].record_id, recordId: data[0].record_id,
}) })
this.getStartTime(data[0].create_time) this.getStartTime(data[0].create_time, data[0].now)
this.setCounter() this.setCounter()
} else if (code === 23007) { } else if (code === 23007) {
this.props.history.replace('/ai-test/scores') this.props.history.replace('/ai-test/scores')
...@@ -113,9 +113,9 @@ class Exam extends Component { ...@@ -113,9 +113,9 @@ class Exam extends Component {
}) })
} }
getStartTime = (timestamp) => { getStartTime = (createTimeStamp, current) => {
const now = new Date() const now = new Date(current * 1000)
const createTime = new Date(timestamp * 1000) const createTime = new Date(createTimeStamp * 1000)
this.setState({ this.setState({
time: { time: {
d: differenceInDays(now, createTime), d: differenceInDays(now, createTime),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment