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.
19 lines
408 B
19 lines
408 B
|
3 years ago
|
import request from "../utils/axios";
|
||
|
|
|
||
|
|
//医院列表
|
||
|
|
export const queryHosiptal = () => {
|
||
|
|
return request({
|
||
|
|
url: '/api/blade-system/dept/list-hospital',
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
};
|
||
|
|
//预约须知
|
||
|
|
export const queryNoticeDetail = (id) => {
|
||
|
|
return request({
|
||
|
|
url: '/api/blade-business/article/detail-by-id',
|
||
|
|
method: 'get',
|
||
|
|
params:{
|
||
|
|
id
|
||
|
|
}
|
||
|
|
})
|
||
|
|
};
|