diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index ce0c85d..dcd537f 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -337,7 +337,7 @@
同步失败
BMPA失败
BMPA成功
- 续费缺订阅
+ 续费缺订阅
diff --git a/tests/Feature/AdminPlatformOrderIndexQuickFilterRenewalMissingSubscriptionShouldHaveDataRoleTest.php b/tests/Feature/AdminPlatformOrderIndexQuickFilterRenewalMissingSubscriptionShouldHaveDataRoleTest.php
new file mode 100644
index 0000000..5bbe3a1
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexQuickFilterRenewalMissingSubscriptionShouldHaveDataRoleTest.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_index_quick_filter_renewal_missing_subscription_should_have_data_role(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $res->assertSee('data-role="po-quickfilter-renewal-missing-sub"', false);
+ $res->assertSee('续费缺订阅', false);
+ $res->assertSee('renewal_missing_subscription=1', false);
+ }
+}