|
|
// 预约检测相关接口
|
|
|
|
const api = {
|
|
// 预约检测列表查询
|
|
getSubscribeList: {
|
|
url: '/subscribe/list',
|
|
method: 'GET',
|
|
auth: true,
|
|
limit : 500,
|
|
showLoading : true,
|
|
},
|
|
// 预约检测详情
|
|
getSubscribeDetail: {
|
|
url: '/subscribe/detail',
|
|
method: 'GET',
|
|
auth: true,
|
|
limit : 500,
|
|
showLoading : true,
|
|
},
|
|
// 预约检测提交或修改
|
|
submitOrUpdateSubscribe: {
|
|
url: '/subscribe/submitOrUpdate',
|
|
method: 'GET',
|
|
auth: true,
|
|
limit : 500,
|
|
showLoading : true,
|
|
},
|
|
// 线上寄回试剂盒
|
|
logisticsSubscribe: {
|
|
url: '/subscribe/logistics',
|
|
method: 'GET',
|
|
auth: true,
|
|
limit : 500,
|
|
showLoading : true,
|
|
},
|
|
// 预约检测取消
|
|
cancelSubscribe: {
|
|
url: '/subscribe/cancel',
|
|
method: 'GET',
|
|
auth: true,
|
|
limit : 500,
|
|
showLoading : true,
|
|
},
|
|
// 查询医院
|
|
getSubscribeHospital: {
|
|
url: '/subscribe/hospital',
|
|
method: 'GET',
|
|
},
|
|
}
|
|
|
|
export default api
|