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(() => {