123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import request from '@/utils/request'
- /**
- * MDT 统计
- * @param {*} data
- * @returns
- */
- export function getStatisticCount(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/statistic/count`,
- method: 'post',
- data
- })
- }
- /**
- * MDT 绩效
- * @param {*} data
- * @returns
- */
- export function getStatisticCountByDoctor(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/statistic/doctor`,
- method: 'post',
- data
- })
- }
- /**
- * MDT 会诊记录
- * @param {*} data
- * @returns
- */
- export function queryMdtManageList(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/query`,
- method: 'post',
- data
- })
- }
- /**
- * 获取详情
- * @param {*} data
- * @returns
- */
- export function queryMdtDetail(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/detail`,
- method: 'post',
- data
- })
- }
- // 重新发送
- export function resendLaunch(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/launch/apply/resendLaunch`,
- method: 'post',
- data
- })
- }
- export function feeList(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/fee/data/query`,
- method: 'post',
- data
- })
- }
- export function feeExport(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/fee/data/export`,
- method: 'get',
- headers: {
- 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
- },
- responseType: 'blob',
- data
- })
- }
|