From 410c0377d6f96a1d17018d3834fd5d9ae96fddcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=A1=E5=A4=8D=E4=B9=A0?= <2353956224@qq.com> Date: Fri, 24 Apr 2026 17:47:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=8A=E4=B8=8B=E9=99=90?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=20=20=E4=BC=98=E5=8C=96=E8=8F=9C=E5=8D=95?= =?UTF-8?q?=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/HostListDialog.vue | 12 +++++++ src/layout/WorkbenchLayout.vue | 59 +++++++++++++++++++++---------- 2 files changed, 53 insertions(+), 18 deletions(-) diff --git a/src/components/HostListDialog.vue b/src/components/HostListDialog.vue index da952d5..f41b473 100644 --- a/src/components/HostListDialog.vue +++ b/src/components/HostListDialog.vue @@ -115,7 +115,18 @@ + + 该模式会大幅影响采集主播的速度 +
@@ -334,6 +345,7 @@ const minCount = ref(5) const maxCount = ref() const selectedLevels = ref(new Set()) const showLevelDropdown = ref(false) +const hostListGateHelpText = '从 TK 工作台采集到的主播会进入主播库。开启上下限模式后,到达接收上限时采集会暂停;只有当主播库数量低于主播下限时,采集才会继续查验主播并重新进入主播库。' const resolveRestrictedMaxAnchorCount = (fallbackValue = 9999999) => { const permissions = getPermissions() diff --git a/src/layout/WorkbenchLayout.vue b/src/layout/WorkbenchLayout.vue index 389ed04..6c1dfb9 100644 --- a/src/layout/WorkbenchLayout.vue +++ b/src/layout/WorkbenchLayout.vue @@ -11,65 +11,74 @@
@@ -308,4 +317,18 @@ watch(autoDmMode, async (newVal) => { .yolo-logo { width: 70%; } + +.menu-label { + flex: 1; + min-width: 0; + overflow: hidden; + text-align: left; + font-size: 1rem; + font-weight: 500; + line-height: 1.2; + word-break: break-word; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +}