|
|
|
@ -38,7 +38,7 @@ |
|
|
|
</div> |
|
|
|
<div v-if="isCheckPicture" class="demo-image__preview" |
|
|
|
:style="'margin-top: 2px;margin-left: 2px;height:110px;width:' + (window.pageWidth - 200 - 110 - 45 - 2) + 'px;'"> |
|
|
|
<CheckPicture :doctorBtnDisabled="doctorBtnDisabled" :save="save"/> |
|
|
|
<CheckPicture :doctorBtnDisabled="doctorBtnDisabled" :save="save" /> |
|
|
|
</div> |
|
|
|
<div :style="'margin-top: 2px;margin-left: 2px;width:' + (window.pageWidth - 200 - 110 - 15 - 2) + 'px;'"> |
|
|
|
|
|
|
|
@ -62,8 +62,8 @@ |
|
|
|
<!--组件弹窗--> |
|
|
|
<div v-if="dialogWin.FollowCriticalCheck"> |
|
|
|
<!-- 危急值 --> |
|
|
|
<el-dialog title="危急值" :visible.sync="dialogWin.FollowCriticalCheck" width="800px" |
|
|
|
:show-close="false" :close-on-click-modal="false" :append-to-body="true"> |
|
|
|
<el-dialog title="危急值" :visible.sync="dialogWin.FollowCriticalCheck" width="800px" :show-close="false" |
|
|
|
:close-on-click-modal="false" :append-to-body="true"> |
|
|
|
<FollowCriticalCheck /> |
|
|
|
</el-dialog> |
|
|
|
</div> |
|
|
|
@ -176,7 +176,7 @@ export default { |
|
|
|
// }, |
|
|
|
|
|
|
|
computed: { |
|
|
|
...mapState(["window", "dataTransOpts", "dict", "dialogWin","patientRegister", "customerOrg", "doctorCheck", "sumDoctorCheck"]), |
|
|
|
...mapState(["window", "dataTransOpts", "dict", "dialogWin", "patientRegister", "customerOrg", "doctorCheck", "sumDoctorCheck"]), |
|
|
|
}, |
|
|
|
|
|
|
|
methods: { |
|
|
|
@ -518,10 +518,12 @@ export default { |
|
|
|
suggestion: e.diagnosisSuggestion |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
// 只更新危急值状态 |
|
|
|
getapi(`/api/app/registercheck/getregistercheck?id=${this.doctorCheck.RegisterCheckId}`) |
|
|
|
.then(res => { |
|
|
|
if(res.code>-1){ |
|
|
|
this.doctorCheck.RegisterCheckEdit=res.data |
|
|
|
if (res.code > -1) { |
|
|
|
this.doctorCheck.RegisterCheckEdit.isCriticalValue = res.data.isCriticalValue |
|
|
|
} |
|
|
|
}) |
|
|
|
console.log("操作成功!") |
|
|
|
|