通过集成Electron
,可以将若依分离版项目打包为桌面应用程序,实现更广泛的应用场景。以下是具体的实现步骤。
首先在
package.json
中添加Electron
相关的依赖和脚本配置
{
"name": "ruoyi",
"version": "3.8.6",
"description": "若依管理系统",
"author": "若依",
"license": "MIT",
"main": "background.js",
"scripts": {
....
"electron:serve": "vue-cli-service electron:serve",
"electron:build": "vue-cli-service electron:build",
"electron:build:win32": "vue-cli-service electron:build --win --ia32",
....
},
....
"dependencies": {
"....
"electron-devtools-installer": "3.2.0",
"electron-store": "8.1.0",
"vue-cli-plugin-electron-builder": "2.1.1",
....
},
"devDependencies": {
....
"electron": "26.2.0",
....
},
....
}
在
env.production
文件中配置VUE_APP_BASE_API
为后端接口地址:
# 你自己的后端接口地址
VUE_APP_BASE_API = 'https://vue.ruoyi.vip/prod-api'
在
ruoyi-ui/src
目录下新建background.js
文件,负责Electron
窗口的创建和应用启动逻辑:
'use strict'
import { app, protocol, BrowserWindow } from 'electron'
import { createProtocol } from 'vue-cli-plugin-electron-builder/lib'
import installExtension, { VUEJS_DEVTOOLS } from 'electron-devtools-installer'
const isDevelopment = process.env.NODE_ENV !== 'production'
const additionalData = { myKey: 'myValue' }
let myWindow = null
// Scheme must be registered before the app is ready
protocol.registerSchemesAsPrivileged([
{ scheme: 'app', privileges: { secure: true, standard: true } }
])
async function createWindow() {
// Create the browser window.
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
// Use pluginOptions.nodeIntegration, leave this alone
// See nklayman.github.io/vue-cli-plugin-electron-builder/guide/security.html#node-integration for more info
nodeIntegration: process.env.ELECTRON_NODE_INTEGRATION,
contextIsolation: !process.env.ELECTRON_NODE_INTEGRATION
}
})
if (process.env.WEBPACK_DEV_SERVER_URL) {
// Load the url of the dev server if in development mode
await win.loadURL(process.env.WEBPACK_DEV_SERVER_URL)
if (!process.env.IS_TEST) win.webContents.openDevTools()
} else {
createProtocol('app')
// Load the index.html when not in development
win.loadURL('app://./index.html')
}
}
const gotTheLock = app.requestSingleInstanceLock(additionalData)
if (!gotTheLock) {
app.quit()
} else {
app.on('second-instance', (event, commandLine, workingDirectory, additionalData) => {
if (myWindow) {
if (myWindow.isMinimized()) myWindow.restore()
myWindow.focus()
}
})
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', async () => {
if (isDevelopment && !process.env.IS_TEST) {
// Install Vue Devtools
try {
await installExtension(VUEJS_DEVTOOLS)
} catch (e) {
console.error('Vue Devtools failed to install:', e.toString())
}
}
createWindow()
})
// Exit cleanly on request from parent process in development mode.
if (isDevelopment) {
if (process.platform === 'win32') {
process.on('message', (data) => {
if (data === 'graceful-exit') {
app.quit()
}
})
} else {
process.on('SIGTERM', () => {
app.quit()
})
}
}
}
修改部分代码,使项目能够在Electron
中正常运行:
layout/components/Navbar.vue
和utils/request.js
中将location.href = '/index'
替换为:
this.$router.push('/login');
router/index.js
中的路由模式,将mode: history
改为mode: 'hash'
:
export default new Router({
mode: 'hash',
...
});
cookie
为localStorage
为了兼容桌面应用,将项目中使用的cookie
替换为localStorage
进行数据存储。
运行以下命令安装项目所需的依赖:
npm install --registry=https://registry.npmmirror.com
使用以下命令进行项目的打包操作,生成桌面应用安装包:
npm run electron:build
打包完成后,dist_electron
目录下会生成.exe
文件,直接点击安装即可。
若安装失败,可以通过以下方式配置镜像地址,并使用cnpm
进行依赖安装:
npm config set registry http://registry.npm.taobao.org/
npm config set electron_mirror="https://npm.taobao.org/mirrors/electron/"
npm config set electron_builder_binaries_mirror="http://npm.taobao.org/mirrors/electron-builder-binaries/"
然后依次安装所需的Electron
依赖:
cnpm install electron --save-dev
cnpm install electron-devtools-installer
cnpm install electron-store
cnpm install vue-cli-plugin-electron-builder
这样你就可以顺利地将若依
项目打包为桌面应用了。
powered by kaifamiao