From b6cc35d1ee27b5febd711b876499ab176af5e3fb Mon Sep 17 00:00:00 2001 From: BBIT-Kai <2911862937@qq.com> Date: Tue, 16 Dec 2025 15:29:50 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=8A=9F=E8=83=BD=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E6=94=AF=E6=8C=81=E5=8A=A8=E6=80=81=E6=83=A8=E6=B7=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 6 + vue2/apps/web-antd/src/api/core/menu.ts | 2 +- .../src/views/dashboard/workspace/index.vue | 249 ++++++++---------- .../web-antd/src/views/manager/menu/form.vue | 2 +- .../web-antd/src/views/manager/menu/form2.vue | 2 +- .../workbench/workbench-quick-nav-access.vue | 84 ++++++ .../workbench/workbench-quick-nav.vue | 15 -- 7 files changed, 209 insertions(+), 151 deletions(-) create mode 100644 vue2/packages/effects/common-ui/src/ui/dashboard/workbench/workbench-quick-nav-access.vue diff --git a/readme.md b/readme.md index 618c528..27a09e0 100644 --- a/readme.md +++ b/readme.md @@ -84,6 +84,12 @@ | | 8092 | 8092 | ce_bot_test | xiaozhi-esp32-server | 小智服务器测试页面 | | | 8004 | 8004 | ce_bot_mcp | mcp-endpoint-server | 小智MCP接入点 | | **8094** | 8094 | 8080 | CVAT | CVAT | CVAT**管理界面**,bbit:bbit | +| | 1883 | 1883 | ce_emqx | EMQX | MQTT TCP 端口 | +| | 18083 | 18083 | ce_emqx | EMQX | EMQX**管理界面**,admin:Bbit000000 | +| | 8883 | 8883 | ce_emqx | EMQX | MQTT TCP TLS 端口 | +| | 8083 | 8083 | ce_emqx | EMQX | MQTT WS 端口 | +| | 8084 | 8084 | ce_emqx | EMQX | MQTT WS TLS 端口 | +| | | | | | | | | | | | | | | | | | | | | | | | | | | | diff --git a/vue2/apps/web-antd/src/api/core/menu.ts b/vue2/apps/web-antd/src/api/core/menu.ts index ff41eb9..9e9d3b8 100644 --- a/vue2/apps/web-antd/src/api/core/menu.ts +++ b/vue2/apps/web-antd/src/api/core/menu.ts @@ -15,7 +15,7 @@ export async function getMenuListForUser() { /** * 获取菜单数据列表 */ -export async function getMenuListForAll(plat_id:number) { +export async function getMenuListForAll(plat_id: number) { return pyRequestClient.get>( `/system/menu/list/all/${plat_id}`, ); diff --git a/vue2/apps/web-antd/src/views/dashboard/workspace/index.vue b/vue2/apps/web-antd/src/views/dashboard/workspace/index.vue index 2468fc3..ef26a37 100644 --- a/vue2/apps/web-antd/src/views/dashboard/workspace/index.vue +++ b/vue2/apps/web-antd/src/views/dashboard/workspace/index.vue @@ -1,133 +1,109 @@