From f98a1cca4fa81176c44a877c1ab3fb4743f2f439 Mon Sep 17 00:00:00 2001 From: zhongzm Date: Fri, 20 Jun 2025 17:25:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E9=83=A8=E5=88=86=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E7=9A=84=E5=8F=8C=E7=AB=AF=E9=9A=90=E8=97=8F=E5=92=8C=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/billing/bill/index.vue | 8 +- src/views/billing/cdrlrecords/index.vue | 7 +- src/views/billing/packagehistories/index.vue | 18 ++- src/views/billing/rechargehistory/index.vue | 116 ++++++++++--------- src/views/endpoint/access/index.vue | 6 +- src/views/endpoint/records/index.vue | 5 +- 6 files changed, 100 insertions(+), 60 deletions(-) diff --git a/src/views/billing/bill/index.vue b/src/views/billing/bill/index.vue index 478f3e4..34f0354 100644 --- a/src/views/billing/bill/index.vue +++ b/src/views/billing/bill/index.vue @@ -275,7 +275,7 @@ onMounted(() => { :loading="loading" row-key="id" size="small" - :expandIconColumnWidth="24" + :pagination="{ ...mobilePagination, total: mobilePagination.total, @@ -401,4 +401,10 @@ onMounted(() => { min-width: 24px !important; padding: 0 !important; } +/* 在PC端隐藏展开按钮图标 */ +@media screen and (min-width: 768px) { + :deep(.ant-table-row-expand-icon) { + display: none !important; + } +} diff --git a/src/views/billing/cdrlrecords/index.vue b/src/views/billing/cdrlrecords/index.vue index af18d83..8297e42 100644 --- a/src/views/billing/cdrlrecords/index.vue +++ b/src/views/billing/cdrlrecords/index.vue @@ -1,17 +1,20 @@