diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index db0c93a..8bae9d8 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -103,12 +103,12 @@
-
diff --git a/tests/Feature/AdminPlatformOrderIndexPageJumpLinksShouldHaveDataRoleAndAriaLabelTest.php b/tests/Feature/AdminPlatformOrderIndexPageJumpLinksShouldHaveDataRoleAndAriaLabelTest.php
new file mode 100644
index 0000000..16e0eb6
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexPageJumpLinksShouldHaveDataRoleAndAriaLabelTest.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_page_jump_links_should_have_data_role_and_aria_label(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+ $this->assertStringContainsString('data-role="po-page-jump-links" aria-label="平台订单页内导航"', $html);
+ $this->assertStringContainsString('data-role="po-page-jump-quick-filters" aria-label="定位到快捷筛选"', $html);
+ $this->assertStringContainsString('data-role="po-page-jump-filters" aria-label="定位到筛选条件"', $html);
+ $this->assertStringContainsString('data-role="po-page-jump-summary" aria-label="定位到摘要概览"', $html);
+ $this->assertStringContainsString('data-role="po-page-jump-tools" aria-label="定位到工具区"', $html);
+ $this->assertStringContainsString('data-role="po-page-jump-list" aria-label="定位到订单列表"', $html);
+ }
+}