|
|
|
@ -64,11 +64,22 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<el-dialog title="图片上传" :visible.sync="dialogCheckPictureUpload" :close-on-click-modal="false" width="800px" |
|
|
|
@close="getCheckPictures(doctorCheck.RegisterCheckId)"> |
|
|
|
<CheckPictureUpload :registerCheckId="doctorCheck.RegisterCheckId" :uploadSeq="uploadSeq" |
|
|
|
:closePicUpload="closePicUpload" /> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<el-dialog title="Dcm查看" :visible.sync="dialogDcm" :close-on-click-modal="false" fullscreen> |
|
|
|
<div style="display: flex;"> |
|
|
|
<div> |
|
|
|
<iframe :src="iframeSrc" height="600" width="800"></iframe> |
|
|
|
</div> |
|
|
|
<div></div> |
|
|
|
</div> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
@ -92,6 +103,8 @@ export default { |
|
|
|
routeUrlorPageName: 'doctorCheck', //当前页面归属路由或归属页面权限名称 |
|
|
|
privs: [] // 页面权限 |
|
|
|
}, |
|
|
|
dialogDcm: false, |
|
|
|
iframeSrc: '', |
|
|
|
checkPictures: [ |
|
|
|
// { |
|
|
|
// id: "1", |
|
|
|
@ -288,6 +301,14 @@ export default { |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
// 浏览Dcm文件 |
|
|
|
btnBrowseDcm() { |
|
|
|
|
|
|
|
this.iframeSrc = `${this.sysConfig.dcmViewers}/?mrn=24071610696` |
|
|
|
this.dialogDcm = true |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
// 浏览Dcm文件 |
|
|
|
btnBrowseDcmBak() { |
|
|
|
if (!this.doctorCheck.RegisterCheckId) { |
|
|
|
@ -299,7 +320,7 @@ export default { |
|
|
|
let a = document.createElement('a'); |
|
|
|
|
|
|
|
// 设置 href 属性为要跳转的 URL |
|
|
|
a.href = `${this.sysConfig.dcmServe}/?mrn=0000002`; |
|
|
|
a.href = `${this.sysConfig.dcmViewers}/?mrn=24071610696`; |
|
|
|
|
|
|
|
//(可选)设置 target 属性,比如在新窗口打开 |
|
|
|
a.target = '_blank'; |
|
|
|
@ -319,7 +340,7 @@ export default { |
|
|
|
// document.body.removeChild(a); |
|
|
|
}, |
|
|
|
|
|
|
|
btnBrowseDcm() { |
|
|
|
btnBrowseDcmBak2() { |
|
|
|
let userName = "peis", key = "peis@123" |
|
|
|
// let encodedAuthstring = btoa(this.stringToAscIIBytes(`${userName}:${key}`)); |
|
|
|
let encodedAuthstring = this.toBase64FromUtf8(`${userName}:${key}`); |
|
|
|
|