diff --git a/appData/config/config.properties b/appData/config/config.properties index d846fac..518e1b9 100644 --- a/appData/config/config.properties +++ b/appData/config/config.properties @@ -6,9 +6,12 @@ #\u5BA2\u6237\u7AEF\u66F4\u65B0\u5730\u5740 update_url=http://192.168.1.158:8889/file #\u5BA2\u6237\u7AEF\u5730\u5740\u914D\u7F6E -pharmacy=https://test.yunclinic.cn:7443/pharmacy -doctor=https://test.yunclinic.cn:7443/doctor -pharmacist=https://test.yunclinic.cn:7443/pharmacist +pharmacy=https://tests.yunclinic.cn/pharmacy +#doctor=localhost:8080/doctor +#pharmacist=localhost:8080/pharmacist +#pharmacy=https://pharmacy.yunclinic.cn/pharmacy +doctor=https://tests.yunclinic.cn/doctor +pharmacist=https://tests.yunclinic.cn/pharmacist #windows\u7684C:/Users/\u7528\u6237/\u76EE\u5F55\u4E0B\u7684\u5185\u5BB9(\u5982\u679C\u662Fmac\u4E0B\u7684\u6CE8\u610F\u4FEE\u6539\u8FD9\u4E24\u4E2A\u76EE\u5F55) #\u5BA2\u6237\u7AEF\u7528\u6237\u521B\u5EFA\u5FEB\u6377\u65B9\u5F0F\u5B58\u653E\u76EE\u5F55->lnks.json(window) diff --git a/package.json b/package.json index 5c7af91..d365ff6 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "JUSTAR", - "version": "2.1.2", + "version": "2.1.3", "description": "钜星科技便民问诊系统", "main": "src/index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "start": "chcp 65001 && electron . doctor--default", + "start": "chcp 65001 && electron . pharmacy--default", "pack": "electron-builder --dir", "dist": "electron-builder" }, diff --git a/src/js/setting/print_monitor.js b/src/js/setting/print_monitor.js index b223295..a4cdcd8 100644 --- a/src/js/setting/print_monitor.js +++ b/src/js/setting/print_monitor.js @@ -78,7 +78,7 @@ let print_monitor={ //开启打印监听 openPrinting:function(win){ - ipcMain.on('print', function (event, json_data) { + ipcMain.once('print', function (event, json_data) { let data = JSON.parse(json_data) log.info("打印开始,打印地址为:【"+json_data+"】") print_operation.printing(data.pdf_url, data.printer,win); @@ -94,6 +94,9 @@ let print_monitor={ win.on("close", (e) => { ipcMain.removeAllListeners('close_listPrinter'); }); + win.on("close",(e) => { + ipcMain.removeAllListeners('print'); + }); } }