2.4.4 更改主播上限

This commit is contained in:
2026-03-26 13:38:35 +08:00
parent 1c67cbc5ea
commit b81a0377b8
7 changed files with 562 additions and 78 deletions

View File

@@ -20,15 +20,9 @@
<!-- 浏览器页面 -->
<div class="h-full w-full animate-fadeIn" v-show="currentPage === 'browser'">
<WorkbenchLayout
:account-groups="accountGroups"
:rotation-status="rotationStatus"
:greeting-stats="greetingStats"
:automation-logs="automationLogs"
@go-back="handleGoToConfig"
@stop-all="handleStopAll"
@logout="handleLogout"
/>
<WorkbenchLayout :account-groups="accountGroups" :rotation-status="rotationStatus"
:greeting-stats="greetingStats" :automation-logs="automationLogs" @go-back="handleGoToConfig"
@stop-all="handleStopAll" @logout="handleLogout" />
</div>
</template>
</template>
@@ -71,11 +65,11 @@ noticeStore.fetchNotices()
onMounted(() => {
// Set Title
getAppVersion().then(version => {
document.title = `YoloAI助手Web版v${version}`
document.title = `Yolo终端v${version}`
}).catch(() => {
document.title = 'YoloAI助手Web版'
document.title = 'Yolo终端'
})
console.log('[App]',!isDev , isElectronEnv , !updateReady.value)
console.log('[App]', !isDev, isElectronEnv, !updateReady.value)
// Check Login
try {
const userData = localStorage.getItem(USER_KEY)
@@ -101,7 +95,7 @@ onMounted(() => {
window.electronAPI.onRotationStatusChanged(status => {
rotationStatus.value = status
console.log('[App] 收到轮换状态变化123:', status)
console.log('[App] 收到轮换状态变化123:', status)
// Auto switch tab if group changes
if (status && status.currentActiveGroup && status.enabled) {
console.log('[App] 收到轮换状态变化456:', status)