| 123456789101112131415161718 |
- import request from '@/utils/request'
- // 查询医生设置指定可见的患者信息列表
- export function doctorPatientList(query) {
- return request({
- url: '/qw/companyCustomer/doctorPatientList',
- method: 'get',
- params: query
- })
- }
- // 查询绑定医生的患者详细信息
- export function getDoctorPatientInfo(id) {
- return request({
- url: '/qw/companyCustomer/getDoctorPatientInfo/' + id,
- method: 'get'
- })
- }
|