You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
470 B
31 lines
470 B
get('/blog').to.json({
|
|
code: 200,
|
|
msg: 'ok',
|
|
data: {
|
|
title: 'Hello world'
|
|
}
|
|
})
|
|
|
|
post('/getDate').to.json({
|
|
code: 200,
|
|
msg: 'ok',
|
|
data: {
|
|
status: 0,
|
|
startTime: '1627396856605',
|
|
disparity: 0,
|
|
planStartTime: '1627360856000'
|
|
},
|
|
success: true
|
|
})
|
|
|
|
post('/chooseTime').to.json({
|
|
code: 200,
|
|
msg: 'ok',
|
|
data: {
|
|
status: 1,
|
|
startTime: '1627360856000',
|
|
disparity: 0,
|
|
planStartTime: '1627396856605'
|
|
},
|
|
success: true
|
|
})
|
|
|