|
|
|
@ -23,6 +23,8 @@ |
|
|
|
<div v-else> |
|
|
|
<iframe :src="iframeSrc" :height="window.pageHeight - 105" :width="window.pageWidth - 330"></iframe> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- 查询条件 --> |
|
|
|
<div style="width: 310px;margin-left: 2px;"> |
|
|
|
<div style="display: flex;"> |
|
|
|
|
|
|
|
@ -130,7 +132,7 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<!--Pacs结果录入模版--> |
|
|
|
<el-dialog :title="'Pacs结果录入模版 -- ' + doctorCheck.asbitemName" :visible.sync="dialogWin.PacsTemplate" width="800px" |
|
|
|
<el-dialog :title="'Pacs结果录入模版 -- ' + doctorCheck.asbitemName" :visible.sync="dialogWin.PacsTemplate" width="880px" |
|
|
|
:close-on-click-modal="false"> |
|
|
|
<PacsTemplate :refParams="pacsParams" :refFuncOther="handlePacsResult" /> |
|
|
|
</el-dialog> |
|
|
|
@ -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) { |
|
|
|
|