diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index f495b97..1ddb675 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -346,8 +346,8 @@
已付无回执
有退款
无退款
- 部分退款
- 已退款
+ 部分退款
+ 已退款
diff --git a/tests/Feature/AdminPlatformOrderIndexQuickFiltersRefundedAndPartiallyRefundedShouldHaveDataRoleTest.php b/tests/Feature/AdminPlatformOrderIndexQuickFiltersRefundedAndPartiallyRefundedShouldHaveDataRoleTest.php
new file mode 100644
index 0000000..b0d18cf
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexQuickFiltersRefundedAndPartiallyRefundedShouldHaveDataRoleTest.php
@@ -0,0 +1,37 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_platform_orders_index_quick_filters_refunded_and_partially_refunded_should_have_data_role(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+
+ $this->assertStringContainsString('data-role="po-quickfilter-partially-refunded"', $html);
+ $this->assertStringContainsString('data-role="po-quickfilter-refunded"', $html);
+
+ $this->assertStringContainsString('payment_status=partially_refunded', $html);
+ $this->assertStringContainsString('payment_status=refunded', $html);
+ }
+}