From 9bd700eeb729eaa262b630e56020d72ef01ddcfb Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 23 Oct 2024 10:44:15 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20PCF=E8=A1=A5=E5=85=85=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0online=E5=92=8Coffline=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/neUser/pcf/index.vue | 40 +++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/src/views/neUser/pcf/index.vue b/src/views/neUser/pcf/index.vue index 00831faa..93408d67 100644 --- a/src/views/neUser/pcf/index.vue +++ b/src/views/neUser/pcf/index.vue @@ -103,7 +103,7 @@ let tableColumns = ref([ title: 'SAR', dataIndex: 'sar', align: 'left', - width: 50, + width: 150, }, { title: 'RFSP', @@ -121,34 +121,54 @@ let tableColumns = ref([ title: 'QoS Audio', dataIndex: 'qosAudio', align: 'left', + width: 100, + }, + { + title: 'Online Billing', // 在线计费 + dataIndex: 'online', + align: 'left', + width: 120, + customRender(opt) { + const status = +opt.value; + return status ? 'Enable' : 'Disable'; + }, + }, + { + title: 'Offline Billing', // 离线计费 + dataIndex: 'offline', + align: 'left', + width: 120, + customRender(opt) { + const status = +opt.value; + return status ? 'Enable' : 'Disable'; + }, + }, + { + title: 'PCC Rules', + dataIndex: 'pccRules', + align: 'left', resizable: true, width: 150, minWidth: 100, maxWidth: 300, }, - { - title: 'PCC Rules', - dataIndex: 'pccRules', - align: 'left', - width: 120, - }, { title: 'SESS Rules', dataIndex: 'sessRules', align: 'left', - width: 120, + width: 150, }, { title: 'HDR Enrich', dataIndex: 'hdrEnrich', align: 'left', - width: 100, + width: 150, }, { title: 'UE Policy', dataIndex: 'uePolicy', align: 'left', - width: 100, + width: 150, }, { title: t('common.operate'), From 1faed9bc3d3b1e8f2d6e6f609f4cd496a5ee7636 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 23 Oct 2024 18:48:29 +0800 Subject: [PATCH 2/2] =?UTF-8?q?style:=20=E5=85=B3=E9=94=AE=E6=8C=87?= =?UTF-8?q?=E6=A0=87=E6=A6=82=E8=A7=88=E9=A1=B5=E9=9D=A2=E5=8D=A0=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/perfManage/{perfReport => kpiOverView}/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/views/perfManage/{perfReport => kpiOverView}/index.vue (92%) diff --git a/src/views/perfManage/perfReport/index.vue b/src/views/perfManage/kpiOverView/index.vue similarity index 92% rename from src/views/perfManage/perfReport/index.vue rename to src/views/perfManage/kpiOverView/index.vue index 7dbe18c4..9acef774 100644 --- a/src/views/perfManage/perfReport/index.vue +++ b/src/views/perfManage/kpiOverView/index.vue @@ -8,7 +8,7 @@ onMounted(() => {});