From 7bb561e0a87b8b013404446224fef4b916e25ab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Tue, 10 Mar 2026 14:55:18 +0000 Subject: [PATCH] =?UTF-8?q?feat(platform-orders):=20=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E9=A1=B5=E5=A2=9E=E5=8A=A0=E5=BF=AB=E6=8D=B7=E7=AD=9B=E9=80=89?= =?UTF-8?q?=EF=BC=88=E5=BE=85=E6=94=AF=E4=BB=98/=E5=BE=85=E7=94=9F?= =?UTF-8?q?=E6=95=88/=E5=8F=AF=E5=90=8C=E6=AD=A5=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/admin/platform_orders/index.blade.php | 14 ++++++++++++++ tests/Feature/AdminPlatformOrderTest.php | 6 +++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 888a26a..bebbc83 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -9,6 +9,20 @@

本页先提供可访问列表、基础筛选与摘要卡,后续再补详情、导出、支付记录与退款轨迹。

+
+

快捷筛选

+
用于运营快速定位当前需要处理的订单集合(口径基于筛选条件组合)。
+
+ 全部 + + 待支付 + + 待生效 + + 可同步订阅 +
+
+

筛选条件

diff --git a/tests/Feature/AdminPlatformOrderTest.php b/tests/Feature/AdminPlatformOrderTest.php index 09c41ff..f5b89f7 100644 --- a/tests/Feature/AdminPlatformOrderTest.php +++ b/tests/Feature/AdminPlatformOrderTest.php @@ -35,7 +35,11 @@ class AdminPlatformOrderTest extends TestCase ->assertSee('最近批量同步') ->assertSee('最近24小时批量同步过') ->assertSee('可同步订单') - ->assertSee('近24小时批量同步'); + ->assertSee('近24小时批量同步') + ->assertSee('快捷筛选') + ->assertSee('待支付') + ->assertSee('待生效') + ->assertSee('可同步订阅'); } public function test_guest_cannot_open_platform_orders_page(): void