diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index 2c69e90..8ca050b 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -357,7 +357,6 @@
有回执
-
无回执
已付无回执
有退款
无退款
diff --git a/tests/Feature/AdminPlatformOrderIndexQuickFiltersShouldNotShowBroadNoReceiptLinkTest.php b/tests/Feature/AdminPlatformOrderIndexQuickFiltersShouldNotShowBroadNoReceiptLinkTest.php
new file mode 100644
index 0000000..56686cd
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexQuickFiltersShouldNotShowBroadNoReceiptLinkTest.php
@@ -0,0 +1,33 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_platform_orders_quick_filters_should_not_show_broad_no_receipt_link(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+ $this->assertStringContainsString('已付无回执', $html);
+ $this->assertStringNotContainsString('data-role="po-quickfilter-receipt-none"', $html);
+ }
+}