|
|
@@ -371,10 +371,11 @@
|
|
|
<Search
|
|
|
v-if="showSearchPh"
|
|
|
width="500px"
|
|
|
- title="请选择陪护人员"
|
|
|
+ title="请选择护送人员"
|
|
|
target="physician"
|
|
|
- tip="提示:如无陪护人员,请选择【自助】(拼音为‘zz’,编码为‘99999’)"
|
|
|
+ tip="提示:如无护送人员,请选择【自助】(编码为‘99999’)"
|
|
|
:show-emp-dept="true"
|
|
|
+ :default-options="defaultHsry"
|
|
|
@close="showSearchPh = false"
|
|
|
@click-item="handleSelectPh"
|
|
|
/>
|
|
|
@@ -392,7 +393,10 @@ import {
|
|
|
clearBed,
|
|
|
addBed,
|
|
|
saveBed,
|
|
|
- queryIsPreBed, queryPreAdmiss, receivePatient,
|
|
|
+ queryIsPreBed,
|
|
|
+ queryPreAdmiss,
|
|
|
+ receivePatient,
|
|
|
+ getDefaultHsryList
|
|
|
} from "@/api/medical-advice/patient-info";
|
|
|
import { getAllWards } from "@/api/zhu-yuan-yi-sheng/resident-doctor";
|
|
|
import { clone } from "@/utils/clone";
|
|
|
@@ -401,6 +405,8 @@ import { BizException, ExceptionEnum } from "@/utils/BizException";
|
|
|
import {xcMessage} from "@/utils/xiaochan-element-plus";
|
|
|
import Search from '@/components/search/Index.vue'
|
|
|
|
|
|
+const defaultHsry = ref([])
|
|
|
+
|
|
|
const user = useUserStore().userInfo
|
|
|
const getRoles = user.roles;
|
|
|
const centerDialogVisible = ref(false);
|
|
|
@@ -695,6 +701,10 @@ onMounted(() => {
|
|
|
} else {
|
|
|
queryBedMiInfo();
|
|
|
}
|
|
|
+
|
|
|
+ getDefaultHsryList().then(res => {
|
|
|
+ defaultHsry.value = res
|
|
|
+ })
|
|
|
});
|
|
|
</script>
|
|
|
|