fix: SMF-CDR去除RatingGroup区分

This commit is contained in:
TsMask
2024-12-26 18:39:09 +08:00
parent b0b9c69ad2
commit c22663505c
2 changed files with 8 additions and 7 deletions

View File

@@ -10,6 +10,7 @@ export function listSMFDataCDR(query: Record<string, any>) {
url: '/neData/smf/cdr/list',
method: 'get',
params: query,
timeout: 60_000,
});
}

View File

@@ -88,7 +88,7 @@ let tableState: TabeStateType = reactive({
});
/**表格字段列 */
let tableColumns: ColumnsType = [
let tableColumns = ref<ColumnsType>([
{
title: t('common.rowId'),
dataIndex: 'id',
@@ -225,7 +225,7 @@ let tableColumns: ColumnsType = [
key: 'id',
align: 'left',
},
];
]);
/**表格分页器参数 */
let tablePagination = reactive({
@@ -780,14 +780,14 @@ onBeforeUnmount(() => {
</a-divider>
<div v-for="u in record.cdrJSON.listOfMultipleUnitUsage">
<div>RatingGroup: {{ u.ratingGroup }}</div>
<!-- <div>RatingGroup: {{ u.ratingGroup }}</div> -->
<div
v-for="(udata, i) in u.usedUnitContainer"
style="display: flex"
>
<strong style="margin-right: 12px">
<!-- <strong style="margin-right: 12px">
{{ i }}
</strong>
</strong> -->
<div>
<div>
<span>Data Total Volume: </span>
@@ -801,10 +801,10 @@ onBeforeUnmount(() => {
<span>Data Volume Uplink: </span>
<span>{{ udata.dataVolumeUplink }}</span>
</div>
<div>
<!-- <div>
<span>Time: </span>
<span>{{ udata.time }}</span>
</div>
</div> -->
</div>
</div>
</div>