2.4.4 更改主播上限
This commit is contained in:
20
src/App.vue
20
src/App.vue
@@ -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 = `Yolo(AI助手Web版)v${version}`
|
||||
document.title = `Yolo终端v${version}`
|
||||
}).catch(() => {
|
||||
document.title = 'Yolo(AI助手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)
|
||||
|
||||
Reference in New Issue
Block a user