diff --git a/ElectronJS/src/taskGrid/FlowChart.html b/ElectronJS/src/taskGrid/FlowChart.html index 1c52690..b4e528e 100644 --- a/ElectronJS/src/taskGrid/FlowChart.html +++ b/ElectronJS/src/taskGrid/FlowChart.html @@ -34,7 +34,7 @@
Toolkit
- + diff --git a/ElectronJS/src/taskGrid/FlowChart_CN.html b/ElectronJS/src/taskGrid/FlowChart_CN.html index 1f924fd..f0e849e 100644 --- a/ElectronJS/src/taskGrid/FlowChart_CN.html +++ b/ElectronJS/src/taskGrid/FlowChart_CN.html @@ -34,7 +34,7 @@
工具箱
- + diff --git a/ElectronJS/src/taskGrid/logic.js b/ElectronJS/src/taskGrid/logic.js index f0efbb3..239ec68 100644 --- a/ElectronJS/src/taskGrid/logic.js +++ b/ElectronJS/src/taskGrid/logic.js @@ -205,10 +205,10 @@ var backEndAddressServiceWrapper = getUrlParam("backEndAddressServiceWrapper"); function saveService(type) { var serviceId = $("#serviceId").val(); - var text = "Confirm to save this task?"; + var text = "Confirm to save this task (If cannot click, can press Enter)? "; if (type == 1) { //任务另存为 serviceId = -1; - text = "Confirm to save as another task in the system?"; + text = "Confirm to save as another task in the system (If cannot click, can press Enter)?"; } if (confirm(text)) { let serviceName = $("#serviceName").val(); diff --git a/ElectronJS/src/taskGrid/logic_CN.js b/ElectronJS/src/taskGrid/logic_CN.js index 06aad85..205e5ce 100644 --- a/ElectronJS/src/taskGrid/logic_CN.js +++ b/ElectronJS/src/taskGrid/logic_CN.js @@ -205,10 +205,10 @@ var backEndAddressServiceWrapper = getUrlParam("backEndAddressServiceWrapper"); function saveService(type) { var serviceId = $("#serviceId").val(); - var text = "确认要保存任务吗?"; + var text = "确认要保存任务吗(不能用鼠标点击时,请按键盘回车键)?"; if (type == 1) { //任务另存为 serviceId = -1; - text = "确认要另存为任务吗?"; + text = "确认要另存为任务吗(不能用鼠标点击时,请按键盘回车键)?"; } if (confirm(text)) { let serviceName = $("#serviceName").val();