lyc-dev #59
|
@ -41,7 +41,7 @@ function createMainWindow() {
|
|||
width: 1200,
|
||||
height: 700,
|
||||
show: false,
|
||||
frame: false,// 无边框
|
||||
frame: false, // 无边框
|
||||
autoHideMenuBar: true,
|
||||
...(process.platform === 'linux' ? { icon } : {}),
|
||||
webPreferences: {
|
||||
|
@ -84,11 +84,14 @@ function createOpenWin(data) {
|
|||
nodeIntegration: true
|
||||
}
|
||||
})
|
||||
let cookieDetails = {...data.cookieData}
|
||||
openWindow.webContents.session.cookies.set(cookieDetails).then(()=>{
|
||||
console.log('Cookie set successfully.')
|
||||
}).catch(err =>{
|
||||
console.error('Set cookie failed:', error)
|
||||
let cookieDetails = { ...data.cookieData }
|
||||
console.log(cookieDetails)
|
||||
openWindow.webContents.session.cookies.set(cookieDetails, (error) => {
|
||||
if (error) {
|
||||
console.error('设置cookie出错:', error)
|
||||
} else {
|
||||
console.log('设置cookie成功')
|
||||
}
|
||||
})
|
||||
|
||||
openWindow.loadURL(data.fullPath)
|
||||
|
@ -149,6 +152,7 @@ app.on('ready', () => {
|
|||
createLoginWindow()
|
||||
}
|
||||
mainWindow.destroy()
|
||||
mainWindow = null
|
||||
loginWindow.show()
|
||||
loginWindow.focus()
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue