Compare commits

..

No commits in common. "b4c9db619eb9671e78b9aefab06b54e0205c7a16" and "74275ac327d2b3d15a037cc88a61c90386da1bc7" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "aix-win",
"version": "1.0.6",
"version": "1.0.5",
"description": "An Electron application with Vue",
"main": "./out/main/index.js",
"author": "example.com",

View File

@ -209,7 +209,7 @@ export default {
ipcRenderer.on('download-file-default-prog' + fileName, this.progDownFile)
ipcRenderer.once('download-file-default' + fileName, (e, isSuccess) => {
if (isSuccess === true) {
resolve(fileName)
resolve(appRootFilePath + fileName)
} else {
ElMessage({
type: 'info',
@ -218,7 +218,7 @@ export default {
}
})
} else {
resolve(fileName)
resolve(appRootFilePath + fileName)
}
})
})