diff --git a/resources/views/admin/plans/index.blade.php b/resources/views/admin/plans/index.blade.php
index ffd09b6..a43902f 100644
--- a/resources/views/admin/plans/index.blade.php
+++ b/resources/views/admin/plans/index.blade.php
@@ -154,11 +154,15 @@
关联订阅总量
-
{{ $summaryStats['subscriptions_count'] ?? 0 }}
+
关联平台订单总量
-
{{ $summaryStats['platform_orders_count'] ?? 0 }}
+
diff --git a/tests/Feature/AdminPlanIndexSummaryCardsLinkToSubscriptionsAndOrdersTest.php b/tests/Feature/AdminPlanIndexSummaryCardsLinkToSubscriptionsAndOrdersTest.php
new file mode 100644
index 0000000..f77fb57
--- /dev/null
+++ b/tests/Feature/AdminPlanIndexSummaryCardsLinkToSubscriptionsAndOrdersTest.php
@@ -0,0 +1,33 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_summary_cards_should_link_to_subscriptions_and_platform_orders(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $this->get('/admin/plans')
+ ->assertOk()
+ ->assertSee('关联订阅总量')
+ ->assertSee('关联平台订单总量')
+ ->assertSee('/admin/site-subscriptions?back=%2Fadmin%2Fplans', false)
+ ->assertSee('/admin/platform-orders?back=%2Fadmin%2Fplans', false);
+ }
+}