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.
18 lines
324 B
18 lines
324 B
get('/blog').to.json({
|
|
code: 200,
|
|
msg: 'ok',
|
|
data: {
|
|
title: 'Hello world'
|
|
}
|
|
})
|
|
|
|
post('/getDate').to.json({
|
|
code: 200,
|
|
msg: 'ok',
|
|
data: {
|
|
TimeOfOnset: '2021-07-27 08:00', // 发病时间
|
|
TriageTime: '2021-07-27 09:00', // 分诊时间
|
|
isThrombolytic: false, // 未溶栓
|
|
},
|
|
success: true
|
|
})
|
|
|