非dicom表单更改及渲染视口双击事件优化

uat
caiyiling 2025-03-12 11:34:18 +08:00
parent bf57b75bed
commit f3c073286b
2 changed files with 7 additions and 3 deletions

View File

@ -649,9 +649,12 @@ export default {
//
toggleFullScreen(e, index) {
const i = this.viewportInfos.findIndex(i => i.index === index)
if (i === -1 && this.imageType.includes(this.viewportInfos[i].fileType)) return
this.fullScreenIndex = this.fullScreenIndex === index ? null : index
this.activeCanvasIndex = index
if (i === -1) return
if (!this.viewportInfos[i].currentFileName) return
if (this.imageType.includes(this.viewportInfos[i].fileType)) {
this.fullScreenIndex = this.fullScreenIndex === index ? null : index
this.activeCanvasIndex = index
}
},
//
toggleTask(evt, visitTaskNum, i) {

View File

@ -466,6 +466,7 @@ export default {
width: 400px;
border: 1px solid #727272;
padding: 0 10px;
overflow-y: auto;
.text-info {
display: flex;
align-items: center;