diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index 1ec73ce..51efd08 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -329,7 +329,7 @@
@endphp
-
全部
+
全部
待支付
可BMPA处理
待生效
diff --git a/tests/Feature/AdminPlatformOrderIndexQuickFilterAllShouldHaveDataRoleTest.php b/tests/Feature/AdminPlatformOrderIndexQuickFilterAllShouldHaveDataRoleTest.php
new file mode 100644
index 0000000..9a43d73
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexQuickFilterAllShouldHaveDataRoleTest.php
@@ -0,0 +1,32 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_platform_orders_index_quick_filter_all_should_have_data_role(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $res->assertSee('data-role="po-quickfilter-all"', false);
+ $res->assertSee('>全部', false);
+ }
+}