diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php index 982db79..0a6a34c 100644 --- a/resources/views/admin/platform_orders/show.blade.php +++ b/resources/views/admin/platform_orders/show.blade.php @@ -79,6 +79,16 @@ +
+
+ 快速定位: + 支付回执 + 退款记录 + 订阅同步 + 治理动作 +
+
+

订单信息

diff --git a/tests/Feature/AdminPlatformOrderShowQuickNavAnchorsShouldRenderTest.php b/tests/Feature/AdminPlatformOrderShowQuickNavAnchorsShouldRenderTest.php new file mode 100644 index 0000000..fd15dbb --- /dev/null +++ b/tests/Feature/AdminPlatformOrderShowQuickNavAnchorsShouldRenderTest.php @@ -0,0 +1,67 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_order_show_page_should_render_quick_nav_with_key_anchors(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'po_show_quick_nav_0001', + 'name' => '平台订单详情 quick nav 护栏测试套餐', + 'billing_cycle' => 'monthly', + 'price' => 10, + 'list_price' => 10, + 'status' => 'active', + 'sort' => 10, + 'published_at' => now(), + ]); + + $order = PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_SHOW_QUICK_NAV_0001', + 'order_type' => 'new_purchase', + 'status' => 'pending', + 'payment_status' => 'unpaid', + 'plan_name' => $plan->name, + 'billing_cycle' => $plan->billing_cycle, + 'period_months' => 1, + 'quantity' => 1, + 'payable_amount' => 10, + 'paid_amount' => 0, + 'placed_at' => now()->subMinutes(3), + ]); + + $html = $this->get('/admin/platform-orders/' . $order->id) + ->assertOk() + ->getContent(); + + $this->assertStringContainsString('data-role="platform-order-show-quick-nav"', $html); + $this->assertStringContainsString('href="#payment-receipts"', $html); + $this->assertStringContainsString('href="#refund-receipts"', $html); + $this->assertStringContainsString('href="#subscription-sync"', $html); + $this->assertStringContainsString('href="#order-governance-actions"', $html); + } +}