补强工具区快速导航语义标签

This commit is contained in:
萝卜
2026-03-19 07:05:24 +08:00
parent 26a3786e82
commit 6c74d37323
2 changed files with 33 additions and 1 deletions

View File

@@ -1198,7 +1198,7 @@
<div class="tool-grid" data-role="po-tools-grid" aria-label="平台订单工具区网格">
<div class="muted muted-xs mb-10" data-role="po-tools-grid-intro" aria-label="平台订单工具区说明">当前工具区承载导出、批量治理与失败标记清理,请先缩小筛选范围再执行动作。</div>
<div class="actions gap-10 mb-10" data-role="po-tools-grid-jump-links">
<div class="actions gap-10 mb-10" data-role="po-tools-grid-jump-links" aria-label="平台订单工具区快速定位导航">
<a class="btn btn-secondary btn-sm" href="#po-tools-export">导出</a>
<a class="btn btn-secondary btn-sm" href="#batch-activate-subscriptions">批量同步</a>
<a class="btn btn-secondary btn-sm" href="#po-tools-batch-bmpa">批量BMPA</a>

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexToolGridJumpLinksShouldHaveAriaLabelTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->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_have_aria_label(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-tools-grid-jump-links" aria-label="平台订单工具区快速定位导航"', $html);
}
}