补强页内导航工具入口提示文案
This commit is contained in:
@@ -108,7 +108,7 @@
|
||||
<a class="btn btn-secondary btn-sm" data-role="po-page-jump-quick-filters" aria-label="定位到快捷筛选" href="#po-quick-filters">快捷筛选</a>
|
||||
<a class="btn btn-secondary btn-sm" data-role="po-page-jump-filters" aria-label="定位到筛选条件" title="回到筛选区调整范围" href="#filters">筛选条件</a>
|
||||
<a class="btn btn-secondary btn-sm" data-role="po-page-jump-summary" aria-label="定位到摘要概览" title="回到摘要卡查看当前盘面" href="#po-summary-cards">摘要概览</a>
|
||||
<a class="btn btn-secondary btn-sm" data-role="po-page-jump-tools" aria-label="定位到工具区" href="#po-tools-grid">工具区</a>
|
||||
<a class="btn btn-secondary btn-sm" data-role="po-page-jump-tools" aria-label="定位到工具区" title="回到工具区执行导出或批量动作" href="#po-tools-grid">工具区</a>
|
||||
<a class="btn btn-secondary btn-sm" data-role="po-page-jump-list" aria-label="定位到订单列表" href="#po-list-card">订单列表</a>
|
||||
<a class="btn btn-secondary btn-sm" data-role="po-page-jump-top" aria-label="回到页面顶部" href="#po-page-top">回顶部</a>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AdminPlatformOrderIndexPageJumpToolsShouldHaveTitleTest 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_page_jump_tools_should_have_title(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
$res = $this->get('/admin/platform-orders');
|
||||
$res->assertOk();
|
||||
|
||||
$html = (string) $res->getContent();
|
||||
$this->assertStringContainsString('data-role="po-page-jump-tools"', $html);
|
||||
$this->assertStringContainsString('title="回到工具区执行导出或批量动作"', $html);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user