diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index ef89bce..02c4538 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -351,8 +351,8 @@
-
对账不一致
-
退款不一致
+
对账不一致
+
退款不一致
近24小时批量同步
近24小时批量BMPA
近24小时批量生效
diff --git a/tests/Feature/AdminPlatformOrderIndexQuickFiltersReconcileMismatchAndRefundInconsistentShouldHaveDataRoleTest.php b/tests/Feature/AdminPlatformOrderIndexQuickFiltersReconcileMismatchAndRefundInconsistentShouldHaveDataRoleTest.php
new file mode 100644
index 0000000..f2ed7fa
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexQuickFiltersReconcileMismatchAndRefundInconsistentShouldHaveDataRoleTest.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_filters_reconcile_mismatch_and_refund_inconsistent_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-reconcile-mismatch"', $html);
+ $this->assertStringContainsString('data-role="po-quickfilter-refund-inconsistent"', $html);
+ }
+}