From 7aebab3734d9f70aaa126cfe526f2ccbd9a7425f Mon Sep 17 00:00:00 2001
From: lai <371757574@qq.com>
Date: Thu, 4 Jul 2024 17:06:15 +0800
Subject: [PATCH] =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=91=98smfCDR=E5=A2=9E?=
=?UTF-8?q?=E5=8A=A0=E7=A7=9F=E6=88=B7=E5=90=8D=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/dashboard/smfCDR/index.vue | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/src/views/dashboard/smfCDR/index.vue b/src/views/dashboard/smfCDR/index.vue
index ad726ee6..1b661848 100644
--- a/src/views/dashboard/smfCDR/index.vue
+++ b/src/views/dashboard/smfCDR/index.vue
@@ -32,6 +32,8 @@ let queryParams = reactive({
neType: 'SMF',
neId: '001',
subscriberID: '',
+ /** 租户名称*/
+ tenantName: '',
sortField: 'timestamp',
sortOrder: 'desc',
/**开始时间 */
@@ -48,6 +50,8 @@ let queryParams = reactive({
function fnQueryReset() {
queryParams = Object.assign(queryParams, {
subscriberID: '',
+ /** 租户名称*/
+ tenantName: '',
startTime: '',
endTime: '',
pageNum: 1,
@@ -193,6 +197,13 @@ let tableColumns: ColumnsType = [
return cdrJSON.duration;
},
},
+ {
+ title: 'Tenant Name',
+ dataIndex: 'tenantName',
+ align: 'center',
+ key: 'tenantName',
+ width: 150,
+ },
{
title: t('views.dashboard.cdr.smfInvocationTime'), // 调用时间
dataIndex: 'cdrJSON',
@@ -501,6 +512,17 @@ onBeforeUnmount(() => {
>
+
+
+
+
+