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 || '') + '
' + '