提交merge1.3

This commit is contained in:
2025-12-27 15:30:25 +08:00
parent 8c607c8749
commit 088861f66e
1245 changed files with 220442 additions and 77616 deletions

View File

@@ -1,10 +1,15 @@
<<<<<<< HEAD
import request from '@/utils/request'
=======
import request from '@/utils/request';
>>>>>>> v1.3
// 获取住院信息初期数据列表
export function getInit(query) {
return request({
url: '/inpatient-manage/init',
method: 'get',
<<<<<<< HEAD
params: query
})
}
@@ -24,6 +29,10 @@ export function getAdmissionPage(query) {
method: 'get',
params: query
})
=======
params: query,
});
>>>>>>> v1.3
}
// 住院无档登记
@@ -31,8 +40,13 @@ export function addAdmissionInfo(data) {
return request({
url: '/inpatient-manage/admission-information',
method: 'post',
<<<<<<< HEAD
data: data
})
=======
data: data,
});
>>>>>>> v1.3
}
// 住院登记
@@ -40,8 +54,13 @@ export function admissionInfo(data) {
return request({
url: '/inpatient-manage/admission-information',
method: 'put',
<<<<<<< HEAD
data: data
})
=======
data: data,
});
>>>>>>> v1.3
}
/**
@@ -51,7 +70,11 @@ export function getOrgList() {
return request({
url: '/base-data-manage/organization/organization',
method: 'get',
<<<<<<< HEAD
})
=======
});
>>>>>>> v1.3
}
/**
@@ -60,8 +83,13 @@ export function getOrgList() {
export function wardList() {
return request({
url: '/app-common/ward-list',
<<<<<<< HEAD
method: 'get'
})
=======
method: 'get',
});
>>>>>>> v1.3
}
/**
@@ -71,29 +99,44 @@ export function diagnosisInit() {
return request({
url: '/doctor-station/diagnosis/init',
method: 'get',
<<<<<<< HEAD
})
=======
});
>>>>>>> v1.3
}
// 查询患者相关
export function patientlLists() {
return request({
url: '/patient-manage/information/init',
<<<<<<< HEAD
method: 'get'
})
=======
method: 'get',
});
>>>>>>> v1.3
}
// 查询患者相关
export function doctorList(id) {
return request({
url: '/inpatient-manage/doctor-list?orgId=' + id,
<<<<<<< HEAD
method: 'get'
})
=======
method: 'get',
});
>>>>>>> v1.3
}
// 查询患者相关
export function getPatientInfo(id, statusEnum) {
return request({
url: `/inpatient-manage/admission-one?id=${id}&statusEnum=${statusEnum}`,
<<<<<<< HEAD
method: 'get'
})
}
@@ -113,14 +156,23 @@ export function getInHospitalInfo(encounterId) {
url: `/inhospital-charge/register/in-hospital-info?encounterId=${encounterId}`,
method: 'get'
})
=======
method: 'get',
});
>>>>>>> v1.3
}
// 获取病区床位信息
export function getBedInfo(wardBusNo) {
return request({
url: `/inhospital-charge/register/beds-num?wardBusNo=${wardBusNo}`,
<<<<<<< HEAD
method: 'get'
})
=======
method: 'get',
});
>>>>>>> v1.3
}
// 住院登记
@@ -128,8 +180,13 @@ export function registerInHospital(data) {
return request({
url: '/inhospital-charge/register/by-cashier',
method: 'post',
<<<<<<< HEAD
data: data
})
=======
data: data,
});
>>>>>>> v1.3
}
// 无档登记
@@ -137,16 +194,26 @@ export function noFilesRegister(data) {
return request({
url: '/inhospital-charge/register/no-files',
method: 'post',
<<<<<<< HEAD
data: data
})
=======
data: data,
});
>>>>>>> v1.3
}
// 表单初始化
export function patientFormInit() {
return request({
url: '/patient-manage/information/init',
<<<<<<< HEAD
method: 'get'
})
=======
method: 'get',
});
>>>>>>> v1.3
}
// 合同
@@ -154,7 +221,11 @@ export function getContractList() {
return request({
url: '/app-common/contract-list',
method: 'get',
<<<<<<< HEAD
})
=======
});
>>>>>>> v1.3
}
/**
@@ -164,6 +235,114 @@ export function getDiagnosisDefinitionList(queryParams) {
return request({
url: '/doctor-station/diagnosis/condition-definition-metadata',
method: 'get',
<<<<<<< HEAD
params: queryParams
})
}
}
=======
params: queryParams,
});
}
// 获取患者基础信息
export function getPatientBasicInfo(patientId) {
return request({
url: `/inhospital-charge/register/patient-info?patientId=${patientId}`,
method: 'get',
});
}
// -------------------------------------------------------------------------
// 查询住院登记信息
export function getRegisteInfoPage(query) {
return request({
url: '/yb-inpatient-request/register-info',
method: 'get',
params: query,
});
}
// 医保登记按钮 获取信息
export function getInHospitalInfo(encounterId) {
return request({
url: `/yb-inpatient-request/in-hospital-info?encounterId=${encounterId}`,
method: 'get',
});
}
//医保登记按钮 保存
export function saveEmr(data) {
return request({
url: '/yb-inpatient-request/inpatient-reg',
method: 'post',
data: data,
});
}
//医保出院按钮 信息获取
export function getInpatientCheckInfo(data) {
return request({
url: '/yb-inpatient-request/inpatient-check-info',
method: 'post',
data: data,
});
}
//医保出院按钮 保存
export function checkOutInpatient(data) {
return request({
url: '/yb-inpatient-request/inpatient-check-out',
method: 'post',
data: data,
});
}
//信息变更按钮 获取信息
export function getInpatientRegInfo(data) {
return request({
url: '/yb-inpatient-request/inpatient-reg-info',
method: 'get',
data: data,
});
}
//信息变更按钮 保存
export function updateInpatientRegInfo(data) {
return request({
url: '/yb-inpatient-request/update-inpatient-reg',
method: 'post',
data: data,
});
}
// 入院撤销
export function cancelInpatientRegister(data) {
return request({
url: '/yb-inpatient-request/cancel-inpatient-reg',
method: 'get',
data: data,
});
}
//出院撤销
export function cancelDischargeRegister(data) {
return request({
url: '/yb-inpatient-request/cancel-inpatient-check-out',
method: 'get',
data: data,
});
}
//病案上传
export function uploadEmr(data) {
return request({
url: '/yb-inpatient-request/emr-up',
method: 'post',
data: data,
});
}
// 获取患者医保信息
export function gerPreInfo(data) {
return request({
url: '/yb-inpatient-request/inpatient-per-info',
method: 'post',
data: data,
});
}
>>>>>>> v1.3