import request from '@/utils/request' // 查询导入批次列表 export function patientInfoImportBatchlist(query) { return request({ url: '/manage/patientInfoimportmain/list', method: 'get', params: query }) } // 删除导入 export function updateSn(sn) { return request({ url: `/manage/patientInfoimportmain/updateSn?sn=${sn}`, method: 'POST' }) } //删除导入明细 export function updatePatientInfoImport(data) { return request({ url: `/manage/patientInfoimportmain/updatePatientInfoImport`, method: 'POST', data }) } // 查询最后一条信息 export function outboundConfirmation() { return request({ url: '/manage/signroute/outboundConfirmation', method: 'get', }) } // 确认按钮 export function directOutbound(data) { return request({ url: `/manage/signroute/directOutbound`, method: 'post', data }) } // 获取医院外呼时间起止详细信息 export function selectDialTime() { return request({ url: `/manage/patientInfoimportmain/selectDialTime`, method: 'get', }) } // 新增医院外呼时间起止 export function addDialTime(data) { return request({ url: `/manage/patientInfoimportmain/addDialTime`, method: 'post', data }) }