From 081500f37c800feb927a688203bb28e96e261efd Mon Sep 17 00:00:00 2001 From: zhang zhuo Date: Sun, 25 Jan 2026 09:42:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 2 +- src/config/index.ts | 2 +- src/views/tools/flow/left.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.env.development b/.env.development index 4aa45e0..2f4ae18 100644 --- a/.env.development +++ b/.env.development @@ -8,7 +8,7 @@ VITE_APP_ENV='development' VITE_API_BASE='https://demo.leapy.cn' VITE_WS_URL='wss://demo.leapy.cn/ws' -# SM2公钥 +# RSA公钥 VITE_RSA_PUBLIC_KEY='-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgSGuTW9sIHkDCOcXe0Gk euU82C9vGDaL569ChxdG3Ab4BCu1LqtGARMBeTW99amHbRbJE4/dzafUsGEh2rOq diff --git a/.env.production b/.env.production index 9509830..a6cd96b 100644 --- a/.env.production +++ b/.env.production @@ -8,7 +8,7 @@ VITE_APP_ENV='production' VITE_API_BASE='https://demo.leapy.cn' VITE_WS_URL='wss://demo.leapy.cn/ws' -# SM2公钥 +# RSA公钥 VITE_RSA_PUBLIC_KEY='-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgSGuTW9sIHkDCOcXe0Gk euU82C9vGDaL569ChxdG3Ab4BCu1LqtGARMBeTW99amHbRbJE4/dzafUsGEh2rOq diff --git a/src/config/index.ts b/src/config/index.ts index f69dbfe..2343884 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -22,6 +22,6 @@ export default { //布局 分栏:column | 通栏:header | 经典:menu | 功能坞:dock //dock将关闭标签和面包屑栏 APP_LAYOUT: 'column', - // sm2公钥 + // rsa公钥 RSA_PUBLIC_KEY: import.meta.env.VITE_RSA_PUBLIC_KEY } diff --git a/src/views/tools/flow/left.vue b/src/views/tools/flow/left.vue index 5f2f09f..488a6e4 100644 --- a/src/views/tools/flow/left.vue +++ b/src/views/tools/flow/left.vue @@ -80,7 +80,7 @@ const eventList = reactive([ {type: EVENT_NODE_TYPES.ACCEPT, label: "接收节点", icon: "pi-icon-accept"} ]) const gatewayList = reactive([ - {type: GATEWAY_NODE_TYPES.EXCLUSIVE, label: "排他节点", icon: "pi-icon-exclusive"}, + {type: GATEWAY_NODE_TYPES.EXCLUSIVE, label: "排他网关", icon: "pi-icon-exclusive"}, {type: GATEWAY_NODE_TYPES.INCLUSIVE, label: "并行网关", icon: "pi-icon-inclusive"}, {type: GATEWAY_NODE_TYPES.PARALLEL, label: "包容网关", icon: "pi-icon-parallel"} ])