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; +}