patientInfo.js 440 B

123456789101112131415161718
  1. import request from '@/utils/request'
  2. // 查询医生设置指定可见的患者信息列表
  3. export function doctorPatientList(query) {
  4. return request({
  5. url: '/qw/companyCustomer/doctorPatientList',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询绑定医生的患者详细信息
  11. export function getDoctorPatientInfo(id) {
  12. return request({
  13. url: '/qw/companyCustomer/getDoctorPatientInfo/' + id,
  14. method: 'get'
  15. })
  16. }