diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index 772db32..a589174 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -1163,7 +1163,18 @@
@if($clearSyncBlocked)
-
提示:{{ $clearSyncBlockedReason }}
+
@endif
@@ -1219,7 +1230,18 @@
@if($clearBmpaBlocked)
-
提示:{{ $clearBmpaBlockedReason }}
+
@endif
diff --git a/tests/Feature/AdminPlatformOrderIndexClearBmpaBlockedHintShouldIncludeGoBmpaFailedLinkTest.php b/tests/Feature/AdminPlatformOrderIndexClearBmpaBlockedHintShouldIncludeGoBmpaFailedLinkTest.php
new file mode 100644
index 0000000..9ae82e4
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexClearBmpaBlockedHintShouldIncludeGoBmpaFailedLinkTest.php
@@ -0,0 +1,36 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_blocked_hint_should_include_link_to_bmpa_failed_set(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ // 构造一个会触发 clear_bmpa_errors 被阻断的筛选:不在 BMPA 失败集合。
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+
+ $this->assertStringContainsString('data-role="clear-bmpa-errors-blocked-hint"', $html);
+ $this->assertStringContainsString('切到 BMPA 失败集合', $html);
+ $this->assertStringContainsString('bmpa_failed_only=1', $html);
+ }
+}
diff --git a/tests/Feature/AdminPlatformOrderIndexClearSyncBlockedHintShouldIncludeGoFailedLinkTest.php b/tests/Feature/AdminPlatformOrderIndexClearSyncBlockedHintShouldIncludeGoFailedLinkTest.php
new file mode 100644
index 0000000..2ada8fa
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexClearSyncBlockedHintShouldIncludeGoFailedLinkTest.php
@@ -0,0 +1,36 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_blocked_hint_should_include_link_to_sync_failed_set(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ // 构造一个会触发 clear_sync_errors 被阻断的筛选:不在失败集合。
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+
+ $this->assertStringContainsString('data-role="clear-sync-errors-blocked-hint"', $html);
+ $this->assertStringContainsString('切到同步失败集合', $html);
+ $this->assertStringContainsString('sync_status=failed', $html);
+ }
+}