From aaec31bf6f3e549ee844f44f3841beadaa8f79c9 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 May 2026 18:59:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2=E8=A1=A8=E6=A0=BC=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/admin/Orders.vue | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/frontend/src/views/admin/Orders.vue b/frontend/src/views/admin/Orders.vue index 47ff2c8..26e903c 100644 --- a/frontend/src/views/admin/Orders.vue +++ b/frontend/src/views/admin/Orders.vue @@ -92,6 +92,35 @@ onMounted(fetchOrders) .page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; } .table-card { background: #2d2d44; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 20px; } +:deep(.el-table) { + --el-table-bg-color: transparent; + --el-table-tr-bg-color: transparent; + --el-table-header-bg-color: rgba(255, 255, 255, 0.03); + --el-table-row-hover-bg-color: rgba(255, 255, 255, 0.06); + --el-table-border-color: rgba(255, 255, 255, 0.06); + background: transparent; +} + +:deep(.el-table th) { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +:deep(.el-table td) { + color: rgba(255, 255, 255, 0.9); +} + +:deep(.el-table--enable-row-hover .el-table__body tr:hover > td) { + background: rgba(255, 255, 255, 0.06); +} + +:deep(.el-tag) { + background: rgba(78, 110, 242, 0.15); + color: #4e6ef2; + border: none; +} + .pagination-wrap { margin-top: 20px; display: flex;