diff --git a/src/api/perfManage/goldTarget.ts b/src/api/perfManage/goldTarget.ts index 88a38b0e..9ee39937 100644 --- a/src/api/perfManage/goldTarget.ts +++ b/src/api/perfManage/goldTarget.ts @@ -33,3 +33,28 @@ export async function getKPITitle(neType: string) { // 解析数据// return result; } +//忙时呼叫 +export async function getbusyhour(query: Record) { + return request({ + url: '/neData/ims/kpi/busy-hour', + method: 'GET', + params: query, + }); +} +//MOS指标 +export async function getMosHour(query: Record) { + return request({ + url: '/neData/ims/cdr/mos-hour', + method: 'GET', + params: query, + }); +} + +//CCT指标 +export async function getCctHour(query: Record) { + return request({ + url: '/neData/ims/cdr/cct-hour', + method: 'GET', + params: query, + }); +} diff --git a/src/i18n/locales/en-US.ts b/src/i18n/locales/en-US.ts index 8b737b2c..3c9dac70 100644 --- a/src/i18n/locales/en-US.ts +++ b/src/i18n/locales/en-US.ts @@ -875,6 +875,7 @@ export default { list: "List", topology: "Topology", nbName: "RAN Node Name", + nbId: "RAN Node ID", ueNum: "UE Number", topologyTitle: "Radio State Graph", name: "Name", diff --git a/src/i18n/locales/zh-CN.ts b/src/i18n/locales/zh-CN.ts index 62735333..8540c7ba 100644 --- a/src/i18n/locales/zh-CN.ts +++ b/src/i18n/locales/zh-CN.ts @@ -875,6 +875,7 @@ export default { list: "列表", topology: "拓扑图", nbName: "设备名称", + nbId: "设备ID", ueNum: "在线用户数", topologyTitle: "基站状态关系图", name: "基站名称", diff --git a/src/views/neData/base-station/components/history.vue b/src/views/neData/base-station/components/history.vue index 5f0ffeeb..8589462c 100644 --- a/src/views/neData/base-station/components/history.vue +++ b/src/views/neData/base-station/components/history.vue @@ -150,6 +150,15 @@ let tableColumns = ref([ minWidth: 100, maxWidth: 200, }, + { + title: t('views.neData.baseStation.nbId'), + dataIndex: 'nbId', + align: 'left', + resizable: true, + width: 100, + minWidth: 100, + maxWidth: 200, + }, { title: t('views.neData.baseStation.state'), dataIndex: 'state', @@ -247,7 +256,7 @@ function fnGetList(pageNum?: number) { } listNBState(toRaw(queryParams)).then(res => { - if (res.code === RESULT_CODE_SUCCESS) { + if (res.code === RESULT_CODE_SUCCESS) { // 取消勾选 if (tableState.selectedRowKeys.length > 0) { tableState.selectedRowKeys = []; @@ -258,7 +267,7 @@ function fnGetList(pageNum?: number) { tableState.data = rows; if ( tablePagination.total <= - (queryParams.pageNum - 1) * tablePagination.pageSize && + (queryParams.pageNum - 1) * tablePagination.pageSize && queryParams.pageNum !== 1 ) { tableState.loading = false; @@ -290,62 +299,43 @@ watch(