From 81136bf47aa0e1a27fde6b7698fcaf8dac23864c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Tue, 10 Mar 2026 15:04:43 +0000 Subject: [PATCH] =?UTF-8?q?fix(platform-orders):=20=E5=BE=85=E7=94=9F?= =?UTF-8?q?=E6=95=88=E5=BF=AB=E6=8D=B7=E7=AD=9B=E9=80=89=E5=8F=A3=E5=BE=84?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=B8=BA=20paid+pending?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/platform_orders/index.blade.php | 2 +- tests/Feature/AdminPlatformOrderTest.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 0f74d20..ecd4681 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -17,7 +17,7 @@ 待支付 - 待生效 + 待生效 可同步订阅 diff --git a/tests/Feature/AdminPlatformOrderTest.php b/tests/Feature/AdminPlatformOrderTest.php index f5b89f7..13bb7a1 100644 --- a/tests/Feature/AdminPlatformOrderTest.php +++ b/tests/Feature/AdminPlatformOrderTest.php @@ -39,7 +39,8 @@ class AdminPlatformOrderTest extends TestCase ->assertSee('快捷筛选') ->assertSee('待支付') ->assertSee('待生效') - ->assertSee('可同步订阅'); + ->assertSee('可同步订阅') + ->assertSee('/admin/platform-orders?payment_status=paid&status=pending', false); } public function test_guest_cannot_open_platform_orders_page(): void