From 356d2beaa57185e8e00dabceb4dab46c8fbfcc5a Mon Sep 17 00:00:00 2001 From: cb <275647614@qq.com> Date: Thu, 28 Aug 2025 11:45:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=80=80=E5=8D=95=20?= =?UTF-8?q?=E5=90=8E=E5=8F=B0=E4=B8=BB=E5=8D=95=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/order/orderManager.html | 110 ++++++++++++++++-- 1 file changed, 100 insertions(+), 10 deletions(-) diff --git a/ghy-admin/src/main/resources/templates/order/orderManager.html b/ghy-admin/src/main/resources/templates/order/orderManager.html index bdb10df0..61762999 100644 --- a/ghy-admin/src/main/resources/templates/order/orderManager.html +++ b/ghy-admin/src/main/resources/templates/order/orderManager.html @@ -56,6 +56,37 @@ border-color: #1c84c6; color: #fff; } + + /* 表格滚动条样式 */ + .table-scroll-container { + overflow-x: auto; + overflow-y: auto; + max-height: 600px; + } + + .table-scroll-container::-webkit-scrollbar { + width: 8px; + height: 8px; + } + + .table-scroll-container::-webkit-scrollbar-track { + background: #f1f1f1; + border-radius: 4px; + } + + .table-scroll-container::-webkit-scrollbar-thumb { + background: #c1c1c1; + border-radius: 4px; + } + + .table-scroll-container::-webkit-scrollbar-thumb:hover { + background: #a8a8a8; + } + + /* 表格最小宽度 */ + #bootstrap-table { + min-width: 2000px; + }
@@ -331,7 +362,7 @@ -' + row.code + ' +
' - + '' + row.consoleGoodsName + '
' - + '联系人:' + row.addressName + '
' - + '联系电话:' + row.addressPhone + '
' - + '联系地址:' + row.address + '
' - + '下单时间:' + row.createTime + '
' - + '预约时间:' + row.mixExpectTime + '
' - + '下单总金额:' + row.financialMasterMoney + '元,师傅实收金额: '+ row.financialMasterPayMoney + '
' + + '' + (row.code || '') + '
' + + '' + (row.consoleGoodsName || '') + '
' + + '联系人:' + (row.addressName || '') + '
' + + '联系电话:' + (row.addressPhone || '') + '
' + + '联系地址:' + (row.address || '') + '
' + + '下单时间:' + (row.createTime || '') + '
' + + '预约时间:' + (row.mixExpectTime || '') + '
' + + '下单总金额:' + (row.financialMasterMoney || '') + '元,师傅实收金额: ' + (row.financialMasterPayMoney || '') + '
' + '