123456789101112131415161718192021222324252627282930 |
- import request from '@/utils/request'
- /**
- * 查普通患者
- * @param {*} data
- * @returns
- */
- export function manageQuery(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/doctor/stat/manage/query`,
- method: 'post',
- data
- })
- }
- export function diversionQuery(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/doctor/stat/diversion/query`,
- method: 'post',
- data
- })
- }
- export function followupQuery(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/doctor/stat/followup/query`,
- method: 'post',
- data
- })
- }
|