Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -103,7 +103,7 @@ let tableColumns = ref<TableColumnsType>([
|
|||||||
title: 'SAR',
|
title: 'SAR',
|
||||||
dataIndex: 'sar',
|
dataIndex: 'sar',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
width: 50,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'RFSP',
|
title: 'RFSP',
|
||||||
@@ -121,34 +121,54 @@ let tableColumns = ref<TableColumnsType>([
|
|||||||
title: 'QoS Audio',
|
title: 'QoS Audio',
|
||||||
dataIndex: 'qosAudio',
|
dataIndex: 'qosAudio',
|
||||||
align: 'left',
|
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,
|
resizable: true,
|
||||||
width: 150,
|
width: 150,
|
||||||
minWidth: 100,
|
minWidth: 100,
|
||||||
maxWidth: 300,
|
maxWidth: 300,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: 'PCC Rules',
|
|
||||||
dataIndex: 'pccRules',
|
|
||||||
align: 'left',
|
|
||||||
width: 120,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: 'SESS Rules',
|
title: 'SESS Rules',
|
||||||
dataIndex: 'sessRules',
|
dataIndex: 'sessRules',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
width: 120,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'HDR Enrich',
|
title: 'HDR Enrich',
|
||||||
dataIndex: 'hdrEnrich',
|
dataIndex: 'hdrEnrich',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
width: 100,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'UE Policy',
|
title: 'UE Policy',
|
||||||
dataIndex: 'uePolicy',
|
dataIndex: 'uePolicy',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
width: 100,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: t('common.operate'),
|
title: t('common.operate'),
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ onMounted(() => {});
|
|||||||
<template>
|
<template>
|
||||||
<PageContainer>
|
<PageContainer>
|
||||||
<a-card :bordered="false" :body-style="{ padding: '0px' }">
|
<a-card :bordered="false" :body-style="{ padding: '0px' }">
|
||||||
<h1>Perf Report</h1>
|
<h1>kpiOverView</h1>
|
||||||
</a-card>
|
</a-card>
|
||||||
</PageContainer>
|
</PageContainer>
|
||||||
</template>
|
</template>
|
||||||
Reference in New Issue
Block a user