diff --git a/src/i18n/locales/en-US.ts b/src/i18n/locales/en-US.ts index 2e209775..154c3439 100644 --- a/src/i18n/locales/en-US.ts +++ b/src/i18n/locales/en-US.ts @@ -485,7 +485,7 @@ export default { resultOk: "Success", resultFail: "Fail", delTip: "Confirm deletion of the data item numbered [{msg}]?", - exportTip: "Do you confirm to export the current query conditions of the CDR data? (Maximum 10,000 items can be exported.)", + exportTip: "Do you confirm to export the current query conditions of the CDR data?", chargingID: 'Charging ID', smfSubscriptionIDData: 'Subscription ID Data', smfSubscriptionIDType: 'Subscription ID Type', @@ -517,7 +517,7 @@ export default { result: "Result", resultOk: "Successes", delTip: "Confirm deletion of the data item numbered [{msg}]?", - exportTip: "Do you confirm to export the event data of the current query condition? (Maximum 10,000 items can be exported.)", + exportTip: "Do you confirm to export the event data of the current query condition?", }, }, ne: { @@ -601,6 +601,10 @@ export default { success:'Success', default:'Default', }, + quickUpload: { + title: 'Quick License Upload', + selectNe: 'Select NE', + }, backConf: { export: 'Config Export', import: 'Config Import', @@ -1356,10 +1360,18 @@ export default { deleteTipErr: "Failed to delete file", sysloginLog:'System Login Log', sysOperateLog:'System Operation Log', - cdrIMS:'CDR Voice', - cdrSMF:'CDR Data', - cdrSMSC:'CDR SMS', - cdrSGWC:'CDR Roaming Data', + cdrIMS:'CDR IMS Voice', + cdrSMF:'CDR SMF Data', + cdrSMSC:'CDR SMSC SMS', + cdrSGWC:'CDR SGWC Roaming Data', + kpiIMS:'KPI IMS', + kpiAMF:'KPI AMF', + kpiUDM:'KPI UDM', + kpiSMF:'KPI SMF', + kpiPCF:'KPI PCF', + kpiUPF:'KPI UPF', + kpiMME:'KPI MME', + kpiSMSC:'KPI SMSC', } }, monitor: { diff --git a/src/i18n/locales/zh-CN.ts b/src/i18n/locales/zh-CN.ts index 42bd011b..109c1685 100644 --- a/src/i18n/locales/zh-CN.ts +++ b/src/i18n/locales/zh-CN.ts @@ -485,7 +485,7 @@ export default { resultOk: "成功", resultFail: "失败", delTip: "确认删除编号为【{msg}】的数据项?", - exportTip: "确认导出当前查询条件的话单数据吗?(导出最大支持一万条)", + exportTip: "确认导出当前查询条件的话单数据吗?", chargingID: '计费ID', smfSubscriptionIDData: '订阅 ID 数据', smfSubscriptionIDType: '订阅 ID 类型', @@ -517,7 +517,7 @@ export default { result: "结果", resultOk: "成功", delTip: "确认删除编号为【{msg}】的数据项?", - exportTip: "确认导出当前查询条件的事件数据吗?(导出最大支持一万条)", + exportTip: "确认导出当前查询条件的事件数据吗?", }, }, ne: { @@ -1360,10 +1360,18 @@ export default { deleteTipErr: "文件删除失败", sysloginLog:'系统登录日志', sysOperateLog:'系统操作日志', - cdrIMS:'语音话单', - cdrSMF:'数据话单', - cdrSMSC:'短信话单', - cdrSGWC:'漫游数据话单', + cdrIMS:'话单 IMS 语音', + cdrSMF:'话单 SMF 数据', + cdrSMSC:'话单 SMSC 短信', + cdrSGWC:'话单 SGWC 漫游数据', + kpiIMS:'KPI IMS', + kpiAMF:'KPI AMF', + kpiUDM:'KPI UDM', + kpiSMF:'KPI SMF', + kpiPCF:'KPI PCF', + kpiUPF:'KPI UPF', + kpiMME:'KPI MME', + kpiSMSC:'KPI SMSC', } }, monitor: { diff --git a/src/views/dashboard/amfUE/index.vue b/src/views/dashboard/amfUE/index.vue index 4edc10c3..d093d901 100644 --- a/src/views/dashboard/amfUE/index.vue +++ b/src/views/dashboard/amfUE/index.vue @@ -342,7 +342,8 @@ function fnExportList() { modalState.confirmLoading = true; const hide = message.loading(t('common.loading'), 0); const querys = toRaw(queryParams); - querys.pageSize = 10000; + querys.pageNum = 1; + querys.pageSize = tablePagination.total; exportAMFDataUE(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/imsCDR/index.vue b/src/views/dashboard/imsCDR/index.vue index c9a64dd5..064ea3e9 100644 --- a/src/views/dashboard/imsCDR/index.vue +++ b/src/views/dashboard/imsCDR/index.vue @@ -411,7 +411,8 @@ function fnExportList() { modalState.confirmLoading = true; const hide = message.loading(t('common.loading'), 0); const querys = toRaw(queryParams); - querys.pageSize = 10000; + querys.pageNum = 1; + querys.pageSize = tablePagination.total; exportIMSDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/mmeUE/index.vue b/src/views/dashboard/mmeUE/index.vue index 3d848803..3fd87c07 100644 --- a/src/views/dashboard/mmeUE/index.vue +++ b/src/views/dashboard/mmeUE/index.vue @@ -344,7 +344,8 @@ function fnExportList() { modalState.confirmLoading = true; const hide = message.loading(t('common.loading'), 0); const querys = toRaw(queryParams); - querys.pageSize = 10000; + querys.pageNum = 1; + querys.pageSize = tablePagination.total; exportMMEDataUE(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/sgwcCDR/index.vue b/src/views/dashboard/sgwcCDR/index.vue index b00a849e..c719a701 100644 --- a/src/views/dashboard/sgwcCDR/index.vue +++ b/src/views/dashboard/sgwcCDR/index.vue @@ -381,7 +381,8 @@ function fnExportList() { modalState.confirmLoading = true; const hide = message.loading(t('common.loading'), 0); const querys = toRaw(queryParams); - querys.pageSize = 10000; + querys.pageNum = 1; + querys.pageSize = tablePagination.total; exportSGWCDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/smfCDR/index.vue b/src/views/dashboard/smfCDR/index.vue index 28975ea6..a466b599 100644 --- a/src/views/dashboard/smfCDR/index.vue +++ b/src/views/dashboard/smfCDR/index.vue @@ -408,7 +408,8 @@ function fnExportList() { modalState.confirmLoading = true; const hide = message.loading(t('common.loading'), 0); const querys = toRaw(queryParams); - querys.pageSize = 10000; + querys.pageNum = 1; + querys.pageSize = tablePagination.total; exportSMFDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/smscCDR/index.vue b/src/views/dashboard/smscCDR/index.vue index cac8d744..bbbf505f 100644 --- a/src/views/dashboard/smscCDR/index.vue +++ b/src/views/dashboard/smscCDR/index.vue @@ -375,7 +375,8 @@ function fnExportList() { modalState.confirmLoading = true; const hide = message.loading(t('common.loading'), 0); const querys = toRaw(queryParams); - querys.pageSize = 10000; + querys.pageNum = 1; + querys.pageSize = tablePagination.total; exportSMSCDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/neData/base-station/components/history.vue b/src/views/neData/base-station/components/history.vue index 4d8b453f..14f2b63a 100644 --- a/src/views/neData/base-station/components/history.vue +++ b/src/views/neData/base-station/components/history.vue @@ -202,6 +202,8 @@ function fnExportList() { onOk() { const hide = message.loading(t('common.loading'), 0); const querys = toRaw(queryParams); + querys.pageNum = 1; + querys.pageSize = tablePagination.total; exportNBState(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) {