|
@@ -244,7 +244,7 @@
|
|
|
</el-container>
|
|
|
</el-container>
|
|
|
<el-dialog v-model="psDialogFlag" title="皮试信息" destroy-on-close="true" style="width:75%;height:75% ">
|
|
|
- <PsInfo :patintList="allPatientList"></PsInfo>
|
|
|
+ <PsInfo :patintList="allPatientList" :curWard="curWard"></PsInfo>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
|
|
@@ -263,6 +263,7 @@ const yzTemperatureVOS = ref([])
|
|
|
//总量数据
|
|
|
const yzTemperatureSums = ref([])
|
|
|
const allPatientList = ref([])
|
|
|
+const curWard = ref('')
|
|
|
//过敏信息
|
|
|
|
|
|
const psDialogFlag = ref(false)
|
|
@@ -504,7 +505,8 @@ const queryGmInfo=()=>{
|
|
|
|
|
|
}
|
|
|
const selectAllPatientList = (val)=>{
|
|
|
- allPatientList.value=val
|
|
|
+ allPatientList.value=val.allPatientList
|
|
|
+ curWard.value = val.currentWard
|
|
|
}
|
|
|
|
|
|
const selectPatientInfo=(val)=>{
|
|
@@ -530,7 +532,7 @@ const saveThreeTestInfo = () =>{
|
|
|
yzTemperatureSums: yzTemperatureSums.value,
|
|
|
}
|
|
|
saveThreeTest(saveData).then((res) => {
|
|
|
-
|
|
|
+ queryInfo()
|
|
|
})
|
|
|
})
|
|
|
.catch(() => {
|