普兆健康管家前端代码仓库
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.
 
 
 

52 lines
920 B

// 预约检测相关接口
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