门诊挂号对应接口调整,采购入库画面接口调用 up by dh

This commit is contained in:
duhe
2025-03-20 10:43:17 +08:00
parent fe4cc16927
commit 0ac2e84b9f
8 changed files with 484 additions and 631 deletions

View File

@@ -284,12 +284,7 @@
import pcas from "china-division/dist/pcas-code.json";
import {
addPatient,
listmaritalstatus,
listoccupationtype,
lisadministrativegender,
listbloodtypeabo,
listbloodtypearh,
listfamilyrelationshiptype,
patientlLists,
getOutpatientRegistrationList,
} from "./outpatientregistration";
@@ -355,23 +350,14 @@ const props = defineProps({
});
/** 查询菜单列表 */
function getList() {
listmaritalstatus().then((response) => {
maritalstatusList.value = response.data;
});
listoccupationtype().then((response) => {
occupationtypeList.value = response.data;
});
lisadministrativegender().then((response) => {
administrativegenderList.value = response.data;
});
listbloodtypeabo().then((response) => {
bloodtypeaboList.value = response.data;
});
listbloodtypearh().then((response) => {
bloodtypearhList.value = response.data;
});
listfamilyrelationshiptype().then((response) => {
familyrelationshiptypeList.value = response.data;
patientlLists().then((response) => {
console.log(response);
occupationtypeList.value = response.data.occupationType;
administrativegenderList.value = response.data.administrativeGender;
bloodtypeaboList.value = response.data.bloodTypeABO;
bloodtypearhList.value = response.data.bloodTypeRH;
familyrelationshiptypeList.value = response.data.familyRelationshipType;
maritalstatusList.value = response.data.maritalStatus;
});
}