Compare commits
No commits in common. "ce030d23cd39dd40b66aec007e178b018c08884c" and "d5b342ddc63f0732020754586bb9c5230858975d" have entirely different histories.
ce030d23cd
...
d5b342ddc6
|
@ -649,12 +649,9 @@ export default {
|
|||
// 切换全屏
|
||||
toggleFullScreen(e, index) {
|
||||
const i = this.viewportInfos.findIndex(i => i.index === 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
|
||||
}
|
||||
if (i === -1 && this.imageType.includes(this.viewportInfos[i].fileType)) return
|
||||
this.fullScreenIndex = this.fullScreenIndex === index ? null : index
|
||||
this.activeCanvasIndex = index
|
||||
},
|
||||
// 切换任务
|
||||
toggleTask(evt, visitTaskNum, i) {
|
||||
|
|
|
@ -466,7 +466,6 @@ export default {
|
|||
width: 400px;
|
||||
border: 1px solid #727272;
|
||||
padding: 0 10px;
|
||||
overflow-y: auto;
|
||||
.text-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
Loading…
Reference in New Issue