diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index 02c4538..372a333 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -343,7 +343,7 @@
有回执
无回执
-
已付无回执
+
已付无回执
有退款
无退款
部分退款
diff --git a/tests/Feature/AdminPlatformOrderIndexQuickFilterPaidNoReceiptShouldHaveDataRoleTest.php b/tests/Feature/AdminPlatformOrderIndexQuickFilterPaidNoReceiptShouldHaveDataRoleTest.php
new file mode 100644
index 0000000..605fe54
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexQuickFilterPaidNoReceiptShouldHaveDataRoleTest.php
@@ -0,0 +1,34 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_platform_orders_index_quick_filter_paid_no_receipt_should_have_data_role(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $res->assertSee('data-role="po-quickfilter-paid-no-receipt"', false);
+ $res->assertSee('已付无回执', false);
+ $res->assertSee('payment_status=paid', false);
+ $res->assertSee('receipt_status=none', false);
+ }
+}