二期:BUG修复

This commit is contained in:
朱浩 2024-07-27 00:25:46 +08:00
parent 529197c9dc
commit 2f4d48a8c0
2 changed files with 3 additions and 3 deletions

View File

@ -115,7 +115,7 @@ export function toolWindow({url, isFile, isConsole, option={}}) {
}
// 创建-新窗口
let win = new Remote.BrowserWindow(config)
if (!!isFile) win.loadFile(urlAll,{hash: url}) // 加载文件
if (!isDev) win.loadFile(urlAll,{hash: url}) // 加载文件
else win.loadURL(urlAll) // 加载url
win.once('ready-to-show', () => {resolve(win)})
// 主窗口关闭事件

View File

@ -36,7 +36,7 @@ import { ref, onMounted, watch, reactive } from 'vue'
import * as pdfjsLib from 'pdfjs-dist/legacy/build/pdf'
pdfjsLib.GlobalWorkerOptions.workerSrc = '/lib/build/pdf.worker.mjs'
import pdfCanvas from '@/components/pdf/index.vue'
const { ipcRenderer } = require('electron')
const { ipcRenderer } = window.electron || {}
//
const pdfObj = reactive({
numberOfPdf: 2, //
@ -125,4 +125,4 @@ onMounted(async () => {})
}
}
}
</style>
</style>