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 |
- 订单号 |
- 站点 |
- 套餐 |
- 订单类型 |
- 订单状态 |
- 支付状态 |
- 应付金额 |
- 已付金额 |
- 下单时间 |
- 支付时间 |
- 同步状态 |
- 订阅号 |
- 订阅到期 |
- 同步时间 |
- 失败原因 |
- 最近批量同步 |
- 最近批量生效 |
- 回执总额 |
- 对账差额 |
- 回执数 |
- 退款数 |
- 退款总额 |
- 操作 |
-
-
-
+
+
+
+
+ | ID |
+ 订单号 |
+ 站点 |
+ 套餐 |
+ 订单类型 |
+ 订单状态 |
+ 支付状态 |
+ 应付金额 |
+ 已付金额 |
+ 下单时间 |
+ 支付时间 |
+ 同步状态 |
+ 订阅号 |
+ 订阅到期 |
+ 同步时间 |
+ 失败原因 |
+ 最近批量同步 |
+ 最近批量生效 |
+ 回执总额 |
+ 对账差额 |
+ 回执数 |
+ 退款数 |
+ 退款总额 |
+ 操作 |
+
+
+
@forelse($orders as $order)
| {{ $order->id }} |
@@ -1270,7 +1281,8 @@
@endforelse
-
+
+