|
@@ -16,6 +16,7 @@
|
|
|
<el-button icon="Printer" type="success" @click="daYingClick">打印</el-button>
|
|
|
<el-button icon="Search" type="primary" @click="openPatientInfo">患者详情</el-button>
|
|
|
<el-button icon="Search" type="primary" @click="bingAnShouYe">病案首页信息</el-button>
|
|
|
+ <el-button icon="Edit" type="success" @click="twMbDialog=true">修改体温脉搏阈值</el-button>
|
|
|
</div>
|
|
|
<div style="width: 100%;height: 40px;padding-left: 10px;">
|
|
|
<div style="float: left;margin-right: 10px;padding-top: 15px">
|
|
@@ -841,6 +842,9 @@
|
|
|
<el-dialog v-model="hulidanDialogFlag" title="编辑护理记录" draggable destroy-on-close="true" style="width: 75%;height: 750px; ">
|
|
|
<FirstHuLiDan @refreshHuLidan="refreshHuLidan" :nursingRecordData="nursingRecordData" @closeHld="closeHld" ></FirstHuLiDan>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog v-model="twMbDialog" title="编辑体温脉搏阈值" draggable style="width: 300px">
|
|
|
+ <twMbEdit @closeTwMb="closeTwMb" ></twMbEdit>
|
|
|
+ </el-dialog>
|
|
|
<pat-infomation-dialog
|
|
|
v-if="patientInfoDialog"
|
|
|
@closed="patientInfoDialog = false"
|
|
@@ -854,6 +858,7 @@
|
|
|
<script setup name='nursingRecord'>
|
|
|
import PatientInfo from "@/components/medical-advice/PatientInfo.vue"
|
|
|
import FirstHuLiDan from "@/components/medical-advice/nursing-manage/FirstHuLiDan.vue"
|
|
|
+import twMbEdit from "@/components/medical-advice/nursing-manage/twMbEdit.vue"
|
|
|
import PatientBaseList from "@/components/medical-advice/PatientBaseList.vue"
|
|
|
import {getLodop, initLodop} from '@/utils/c-lodop'
|
|
|
import {onMounted,computed,ref} from "vue"
|
|
@@ -1035,6 +1040,10 @@ const openPatientInfo= async ()=>{
|
|
|
patientInfoDialog.value =true
|
|
|
}
|
|
|
|
|
|
+const twMbDialog = ref(false)
|
|
|
+const closeTwMb = ()=>{
|
|
|
+ twMbDialog.value = false
|
|
|
+}
|
|
|
|
|
|
const hulidanDialogFlag=ref(false)
|
|
|
//刷新护理单关闭窗口
|