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'), 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(() => {});