diff --git a/src/components/doctorCheck/CheckItemList.vue b/src/components/doctorCheck/CheckItemList.vue index 6e91da7..a42bd6c 100644 --- a/src/components/doctorCheck/CheckItemList.vue +++ b/src/components/doctorCheck/CheckItemList.vue @@ -254,7 +254,7 @@ :title="'Pacs结果录入模版 -- ' + doctorCheck.asbitemName" v-if="dialogWinPacsTemplate" :visible.sync="dialogWinPacsTemplate" - width="800px" + width="880px" :close-on-click-modal="false" > - diff --git a/src/components/doctorCheck/PacsDcmList.vue b/src/components/doctorCheck/PacsDcmList.vue index 66ad24f..0e6f482 100644 --- a/src/components/doctorCheck/PacsDcmList.vue +++ b/src/components/doctorCheck/PacsDcmList.vue @@ -23,6 +23,8 @@
+ +
@@ -130,7 +132,7 @@
- @@ -336,6 +338,15 @@ export default { this.$message.warning({ showClose: true, message: '请选择日期' }) return } + + // 0:普通检查; 1:检验; 2:特检; 3:放射 + if(this.pacsType == 'image'){ + body.checkTypeFlag = '2' + }else{ + body.checkTypeFlag = '3' + } + + postapi('/api/app/PacsBusiness/GetPatientRegisterPacsCheck', body) .then(res => { if (res.code > -1) { diff --git a/src/components/doctorCheck/PacsTemplate.vue b/src/components/doctorCheck/PacsTemplate.vue index 338d513..2111cca 100644 --- a/src/components/doctorCheck/PacsTemplate.vue +++ b/src/components/doctorCheck/PacsTemplate.vue @@ -1,11 +1,11 @@ @@ -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,12 +518,14 @@ 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 - } - }) + + // 只更新危急值状态 + getapi(`/api/app/registercheck/getregistercheck?id=${this.doctorCheck.RegisterCheckId}`) + .then(res => { + if (res.code > -1) { + this.doctorCheck.RegisterCheckEdit.isCriticalValue = res.data.isCriticalValue + } + }) console.log("操作成功!") } })