+
摘要概览
筛选条件
导出
快速定位只负责跳转到工具组,不会直接执行动作;如需先调整范围,可先回到筛选条件。
diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksShouldIncludeSummaryShortcutTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksShouldIncludeSummaryShortcutTest.php
new file mode 100644
index 0000000..f3f4cb3
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksShouldIncludeSummaryShortcutTest.php
@@ -0,0 +1,36 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_platform_orders_tool_grid_jump_links_should_include_summary_shortcut(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+ $this->assertStringContainsString('data-role="po-summary-cards"', $html);
+ $this->assertStringContainsString('data-role="po-tools-jump-summary"', $html);
+ $this->assertStringContainsString('aria-label="定位到订单摘要概览"', $html);
+ $this->assertStringContainsString('href="#po-summary-cards"', $html);
+ $this->assertStringContainsString('>摘要概览<', $html);
+ }
+}