From 274353d0167ba0fede8f31e0402af3f729f3aec1 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Fri, 29 Aug 2025 18:45:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9F=BA=E7=AB=99=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=B7=BB=E5=8A=A0=E7=A7=9F=E6=88=B7=E5=90=8D?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ne-data/base-station/list.vue | 51 +++++++++++++++++++------ 1 file changed, 39 insertions(+), 12 deletions(-) diff --git a/src/views/ne-data/base-station/list.vue b/src/views/ne-data/base-station/list.vue index 1ab75856..8c4da829 100644 --- a/src/views/ne-data/base-station/list.vue +++ b/src/views/ne-data/base-station/list.vue @@ -125,7 +125,7 @@ let tableColumns = ref([ dataIndex: 'address', align: 'left', resizable: true, - width: 100, + width: 150, minWidth: 100, maxWidth: 200, }, @@ -134,7 +134,7 @@ let tableColumns = ref([ dataIndex: 'nbName', align: 'left', resizable: true, - width: 100, + width: 150, minWidth: 100, maxWidth: 200, }, @@ -143,9 +143,9 @@ let tableColumns = ref([ dataIndex: 'ueNum', align: 'left', resizable: true, - width: 80, - minWidth: 80, - maxWidth: 120, + width: 120, + minWidth: 100, + maxWidth: 200, }, { title: t('views.neData.baseStation.state'), @@ -160,7 +160,7 @@ let tableColumns = ref([ { title: t('views.neData.baseStation.time'), align: 'left', - width: 150, + width: 200, customRender(opt) { const record = opt.value; if (record.state === 'OFF') { @@ -169,6 +169,11 @@ let tableColumns = ref([ return record.onTime || '-'; }, }, + { + title: t('views.dashboard.cdr.tenantName'), + dataIndex: 'tenantName', + align: 'left', + }, ]); /**表格分页器参数 */ @@ -491,6 +496,7 @@ function fnExportList() { } }); data[t('views.neData.baseStation.time')] = row.time || '-'; + data[t('views.dashboard.cdr.tenantName')] = row.tenantName || '-'; dataArr.push(data); } @@ -504,6 +510,7 @@ function fnExportList() { t('views.neData.baseStation.ueNum'), t('views.neData.baseStation.state'), t('views.neData.baseStation.time'), + t('views.dashboard.cdr.tenantName'), ], }).then(fileBlob => saveAs(fileBlob, `nb_state_records_export_${Date.now()}.xlsx`) @@ -728,7 +735,11 @@ onMounted(() => { - + {{ t('common.search') }} @@ -747,7 +758,11 @@ onMounted(() => {