From 7e78b031d771ea5026098cd5cbc4621325023343 Mon Sep 17 00:00:00 2001 From: liangxu Date: Sat, 25 Apr 2026 17:39:02 +0800 Subject: [PATCH] chore(admin-web): drop redundant publish hint copy from media view Remove the immediate/queued publish hint sentences and the explanatory alert block, and hide the card footer when there's nothing to show. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/admin-web/src/views/MediaView.vue | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/apps/admin-web/src/views/MediaView.vue b/apps/admin-web/src/views/MediaView.vue index 9f19ebb..79a3004 100644 --- a/apps/admin-web/src/views/MediaView.vue +++ b/apps/admin-web/src/views/MediaView.vue @@ -159,12 +159,6 @@ function resolvePublishState(account: DesktopAccountInfo): PublishState { } function resolvePublishHint(account: DesktopAccountInfo, publishState: PublishState): string { - if (publishState === "immediate") { - return "客户端在线,RabbitMQ 事件会立即唤醒桌面端消费发布任务。"; - } - if (publishState === "queued") { - return "客户端离线,发布任务会先落库保留,等桌面端恢复在线后继续消费。"; - } if (account.health !== "live") { return "授权状态异常,先在桌面端重新校验后再发布。"; } @@ -320,13 +314,6 @@ async function refreshAll(): Promise { - -
{
-