@extends('admin.layouts.app') @section('title', '订单监控') @section('page_title', '订单监控') @section('content')
当前页面用于总台视角查看全局订单状态,后续商家后台将承接商家侧订单处理动作。
当前订单列表已接入缓存:{{ $cacheMeta['store'] }} / TTL {{ $cacheMeta['ttl'] }}。
@php $exportQuery = http_build_query(array_filter($filters, fn ($value) => $value !== null && $value !== '')); @endphp| ID | 商家 | 订单号 | 平台 | 买家 | 支付 | 金额 | 创建时间 | 支付时间 | 发货时间 | 完成时间 | 状态 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $order->id }} | {{ $order->merchant?->name ?? ('商家#'.$order->merchant_id) }} | {{ $order->order_no }} | {{ $platformLabels[$order->platform] ?? $order->platform }} | {{ $order->buyer_name }} | {{ $paymentChannelLabels[$order->payment_channel] ?? $order->payment_channel }} {{ $paymentStatusLabels[$order->payment_status] ?? $order->payment_status }} |
¥{{ number_format($order->pay_amount, 2) }} | {{ $order->created_at?->format('Y-m-d H:i') }} | {{ $order->paid_at?->format('Y-m-d H:i') ?? '-' }} | {{ $order->shipped_at?->format('Y-m-d H:i') ?? '-' }} | {{ $order->completed_at?->format('Y-m-d H:i') ?? '-' }} | {{ $statusLabels[$order->status] ?? $order->status }} | |
| 暂无订单 | ||||||||||||