From ed9dcd92d19419238e06ddee111f8563d4de1d67 Mon Sep 17 00:00:00 2001 From: lc18518571399 <18518571399@163.com> Date: Thu, 16 May 2024 23:18:48 +0800 Subject: [PATCH] update --- front/package.json | 3 +- front/src/main/index.js | 3 +- front/src/renderer/src/App.vue | 114 +++++++++++++-------- front/src/renderer/src/assets/css/base.css | 14 --- 4 files changed, 75 insertions(+), 59 deletions(-) diff --git a/front/package.json b/front/package.json index 750160f..eb13661 100644 --- a/front/package.json +++ b/front/package.json @@ -26,7 +26,8 @@ "lodash": "^4.17.21", "pinia": "^2.1.7", "pinia-plugin-persist": "^1.0.0", - "qrcode": "^1.5.3" + "qrcode": "^1.5.3", + "qrcode-vue3": "^1.6.8" }, "devDependencies": { "@rushstack/eslint-patch": "^1.2.0", diff --git a/front/src/main/index.js b/front/src/main/index.js index 1aac77a..3c43783 100644 --- a/front/src/main/index.js +++ b/front/src/main/index.js @@ -57,7 +57,8 @@ app.whenReady().then(() => { if (BrowserWindow.getAllWindows().length === 0) createWindow() }) ipcMain.on('sendMessage', async (eve, msg) => { - let res = await axios.post(`http://127.0.0.1:7001/api/upload`, msg) + // let res = await axios.post(`http://127.0.0.1:7001/api/upload`, msg) + let res = await axios.post(`http://123.249.20.25:9019/api/upload`, msg) mainWindow.webContents.send('reply', res.data) }) }) diff --git a/front/src/renderer/src/App.vue b/front/src/renderer/src/App.vue index 0c76490..8650371 100644 --- a/front/src/renderer/src/App.vue +++ b/front/src/renderer/src/App.vue @@ -1,7 +1,7 @@