123456789101112131415161718 |
- /**
- * @author Jacker
- * @date 2021-07-22 16:00
- */
- import request from '../../service/request';
- /*
- * 科室列表查询查询
- * @params
- * parentId string 父科室id
- * keyWord string 关键字
- * hospitalDistrictId 院区id
- * */
- // eslint-disable-next-line
- export const getDepartmentList = params => {
- const url = '/isvRequest.order.departmentList';
- return request.post(url, params);
- };
|