diff --git a/public/css/admin-base.css b/public/css/admin-base.css index cacdebd..6a4c098 100644 --- a/public/css/admin-base.css +++ b/public/css/admin-base.css @@ -53,6 +53,7 @@ a:hover{text-decoration:underline;} .card-spaced{margin-bottom:20px;} .grid{display:grid;gap:16px;} +.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;} .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;} .grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;} .grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;} diff --git a/public/css/admin-components.css b/public/css/admin-components.css index 52d6f56..0aaa7e0 100644 --- a/public/css/admin-components.css +++ b/public/css/admin-components.css @@ -52,3 +52,19 @@ font-size:12px; line-height:1.5; } + +/* 平台订单列表:避免列太多导致内容挤压成“竖排/断字” */ +.table-wrap{ + width:100%; + overflow-x:auto; +} + +.table-wrap table{ + min-width:1600px; +} + +.table-nowrap th, +.table-nowrap td{ + white-space:nowrap; + word-break:normal; +} diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 29fe6c8..04e3d2d 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -513,6 +513,14 @@

工具

清除仅影响订单 meta 中的失败标记,不改变订单/订阅状态。
+ @php + // 工具区布局:采用与“筛选条件”类似的排版(两列),避免所有内容挤到左侧。 + // 说明:仅做结构包裹,不改动原表单字段/行为。 + $toolForms = []; + @endphp + +
+ @php $hasReconcileMismatchFilter = (($filters['reconcile_mismatch'] ?? '') === '1'); $hasRefundInconsistentFilter = (($filters['refund_inconsistent'] ?? '') === '1'); @@ -895,6 +903,8 @@
+ +
@@ -922,36 +932,37 @@ @endphp 新建平台订单
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
+
ID订单号站点套餐订单类型订单状态支付状态应付金额已付金额下单时间支付时间同步状态订阅号订阅到期同步时间失败原因最近批量同步最近批量生效回执总额对账差额回执数退款数退款总额操作
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + @forelse($orders as $order) @@ -1270,7 +1281,8 @@ @endforelse -
ID订单号站点套餐订单类型订单状态支付状态应付金额已付金额下单时间支付时间同步状态订阅号订阅到期同步时间失败原因最近批量同步最近批量生效回执总额对账差额回执数退款数退款总额操作
{{ $order->id }}
+ +
{{ $orders->links() }}