feat: harden ai agent admin workflow experience

This commit is contained in:
2026-06-22 04:50:11 +08:00
parent ae29c24529
commit 4ec846a702
385 changed files with 61461 additions and 5886 deletions
+4 -2
View File
@@ -16,6 +16,8 @@ const logo = computed(() => preferences.logo.source);
:logo="logo"
:page-description="$t('authentication.pageDesc')"
:page-title="$t('authentication.pageTitle')"
:toolbar="false"
/>
>
<!-- 自定义工具栏 -->
<!-- <template #toolbar></template> -->
</AuthPageLayout>
</template>
+121 -18
View File
@@ -1,32 +1,70 @@
<script lang="ts" setup>
import { computed, defineAsyncComponent, ref, watch } from 'vue';
import type { ChatMessage } from '#/api/core/chat';
import { computed, onMounted, onUnmounted, ref, watch } from 'vue';
import { useRouter } from 'vue-router';
import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
import { useWatermark } from '@vben/hooks';
import { BasicLayout } from '@vben/layouts';
import { BasicLayout, LockScreen, UserDropdown } from '@vben/layouts';
import { $t } from '@vben/locales';
import { preferences } from '@vben/preferences';
import { useAccessStore, useUserStore } from '@vben/stores';
import { openWindow } from '@vben/utils';
import NotificationPopup from '#/components/notification/NotificationPopup.vue';
import { getFileUrl } from '#/composables/useFileUrl';
import { useNotification } from '#/composables/useNotification';
import { useAuthStore } from '#/store';
import LoginForm from '#/views/_core/authentication/login.vue';
import { useChat } from '#/views/_core/chat/composables/useChat';
const LoginForm = defineAsyncComponent(
() => import('#/views/_core/authentication/login.vue'),
);
const AuthenticationLoginExpiredModal = defineAsyncComponent(
() => import('@vben/common-ui/es/login-expired-modal'),
);
const UserDropdown = defineAsyncComponent(() =>
import('@vben/layouts/es/user-dropdown').then(
(module) => module.UserDropdown,
),
);
// 使用消息通知 composable
const {
notifications,
messageUnreadCount,
announcements,
announcementUnreadCount,
activeTab,
showDot,
markAsRead,
markAnnouncementAsRead,
markAllAsRead,
clearReadMessages,
viewAllMessages,
init: initNotification,
cleanup: cleanupNotification,
} = useNotification();
const userStore = useUserStore();
const authStore = useAuthStore();
const accessStore = useAccessStore();
const { destroyWatermark, updateWatermark } = useWatermark();
// 初始化消息通知
const router = useRouter();
const {
connectChat,
disconnectChat,
loadConversations,
loadUnreadChatMessages,
unreadChatMessages,
totalUnread: chatTotalUnread,
} = useChat();
onMounted(() => {
initNotification();
// 全局初始化聊天 WebSocket,确保任何页面都能收到消息通知
connectChat();
loadConversations();
loadUnreadChatMessages();
});
onUnmounted(() => {
cleanupNotification();
disconnectChat();
});
const menus = computed(() => [
// {
// handler: () => {
@@ -57,8 +95,14 @@ const menus = computed(() => [
// },
]);
const ZQ_PLATFORM_GITHUB_URL = 'https://github.com/jiangzhikj/zq-platform';
const ZQ_PLATFORM_OFFICIAL_URL = 'https://zq-platform.com/';
/** 双列仅第一列窄条展示时的短文案 */
const PRODUCT_BRAND_SHORT = 'AI Agent';
const ZQ_PLATFORM_BRAND_SHORT = 'ZQ Platform';
function handleOpenZqOfficialSite() {
openWindow(ZQ_PLATFORM_OFFICIAL_URL, { target: '_blank' });
}
// 头像URL(响应式)
const avatar = ref('');
@@ -82,6 +126,43 @@ async function handleLogout() {
await authStore.logout(false);
}
function handleNoticeClear() {
clearReadMessages();
}
function handleMakeAll() {
markAllAsRead();
}
function handleNoticeRead(item: any) {
markAsRead(item);
}
function handleAnnouncementRead(item: any) {
markAnnouncementAsRead(item);
}
function handleViewAll() {
viewAllMessages();
}
function handleTabChange(tab: 'announcement' | 'chat' | 'message') {
activeTab.value = tab;
}
function handleChatClick(msg: ChatMessage) {
// 新开tab跳转到聊天页面,带上会话ID
const url = router.resolve(
`/chat?conversationId=${msg.conversation_id}`,
).href;
window.open(url, '_blank');
// 从未读聊天列表中移除
const index = unreadChatMessages.value.findIndex((m) => m.id === msg.id);
if (index !== -1) {
unreadChatMessages.value.splice(index, 1);
}
}
watch(
() => ({
enable: preferences.app.watermark,
@@ -118,25 +199,44 @@ watch(
@logout="handleLogout"
/>
</template>
<template #notification>
<NotificationPopup
:dot="showDot || chatTotalUnread > 0"
:notifications="notifications"
:message-unread-count="messageUnreadCount"
:announcements="announcements"
:announcement-unread-count="announcementUnreadCount"
:unread-chats="unreadChatMessages"
:chat-unread-count="chatTotalUnread"
:active-tab="activeTab"
@clear="handleNoticeClear"
@click-chat="handleChatClick"
@make-all="handleMakeAll"
@read-message="handleNoticeRead"
@read-announcement="handleAnnouncementRead"
@view-all="handleViewAll"
@update:active-tab="handleTabChange"
/>
</template>
<template #sidebar-footer="sidebarFooterProps">
<button
type="button"
class="text-muted-foreground hover:text-foreground max-w-full px-1 py-0.5 text-center text-[11px] leading-tight transition-colors"
:title="
sidebarFooterProps?.compact
? PRODUCT_BRAND_SHORT
? ZQ_PLATFORM_BRAND_SHORT
: $t('ui.layout.poweredBy')
"
@click="handleOpenZqOfficialSite"
>
<span
v-show="sidebarFooterProps?.compact || !preferences.sidebar.collapsed"
class="truncate"
>{{
sidebarFooterProps?.compact
? PRODUCT_BRAND_SHORT
? ZQ_PLATFORM_BRAND_SHORT
: $t('ui.layout.poweredBy')
}}</span
>
}}</span>
</button>
</template>
<template #extra>
@@ -147,5 +247,8 @@ watch(
<LoginForm />
</AuthenticationLoginExpiredModal>
</template>
<template #lock-screen>
<LockScreen :avatar @to-login="handleLogout" />
</template>
</BasicLayout>
</template>