소스 검색

fix: 修复PDF文件点击无法在新窗口打开的问题

tanshanming 6 달 전
부모
커밋
c16bec59a7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/libs/globalFunction/file.js

+ 1 - 1
src/libs/globalFunction/file.js

@@ -358,7 +358,7 @@ const fileFunction = {
 			}
 			//  若当前点击项是pdf
 			if (row.extendName.toLowerCase() === 'pdf') {
-				// window.open(this.getViewFilePath(row), '_blank')
+				window.open(this.getViewFilePath(row), '_blank')
 			}
 			//  若当前点击项是代码或文本文件
 			let codeFileSuffix = row.extendName.toLowerCase()