Compare commits
2 Commits
d5b342ddc6
...
ce030d23cd
Author | SHA1 | Date |
---|---|---|
|
ce030d23cd | |
|
f3c073286b |
|
@ -649,9 +649,12 @@ export default {
|
||||||
// 切换全屏
|
// 切换全屏
|
||||||
toggleFullScreen(e, index) {
|
toggleFullScreen(e, index) {
|
||||||
const i = this.viewportInfos.findIndex(i => i.index === index)
|
const i = this.viewportInfos.findIndex(i => i.index === index)
|
||||||
if (i === -1 && this.imageType.includes(this.viewportInfos[i].fileType)) return
|
if (i === -1) return
|
||||||
this.fullScreenIndex = this.fullScreenIndex === index ? null : index
|
if (!this.viewportInfos[i].currentFileName) return
|
||||||
this.activeCanvasIndex = index
|
if (this.imageType.includes(this.viewportInfos[i].fileType)) {
|
||||||
|
this.fullScreenIndex = this.fullScreenIndex === index ? null : index
|
||||||
|
this.activeCanvasIndex = index
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 切换任务
|
// 切换任务
|
||||||
toggleTask(evt, visitTaskNum, i) {
|
toggleTask(evt, visitTaskNum, i) {
|
||||||
|
|
|
@ -466,6 +466,7 @@ export default {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
border: 1px solid #727272;
|
border: 1px solid #727272;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
|
overflow-y: auto;
|
||||||
.text-info {
|
.text-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
Loading…
Reference in New Issue