From 83a289492d045beb875af833619f413f3bb6b8be Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Fri, 12 Sep 2025 17:08:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20UDM=E6=95=B0=E6=8D=AE=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF=EF=BC=8C=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E6=80=BB=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/locales/en-US.ts | 8 ++++---- src/i18n/locales/zh-CN.ts | 8 ++++---- src/views/neData/udm-auth/index.vue | 2 ++ src/views/neData/udm-sub/index.vue | 2 ++ src/views/neData/udm-voip/index.vue | 2 ++ src/views/neData/udm-volte/index.vue | 4 +++- 6 files changed, 17 insertions(+), 9 deletions(-) diff --git a/src/i18n/locales/en-US.ts b/src/i18n/locales/en-US.ts index d35ff36e..2e209775 100644 --- a/src/i18n/locales/en-US.ts +++ b/src/i18n/locales/en-US.ts @@ -841,7 +841,7 @@ export default { passwordPlease: "Please enter your password correctly", addTitle: 'Add VOIP subscriber', delTip: 'Confirm that you want to delete the information of VOIP user as [{num}]?', - exportTip: "Confirm exporting xlsx table files based on search criteria?", + exportTip: "Confirm exporting all VOIP user data based on the current search criteria?", }, udmVolteIMS: { startMSISDN: 'Starting MSISDN', @@ -850,7 +850,7 @@ export default { vniTip: 'Example: ims.mnc000.mcc000.3gppnetwork.org', vniPlease: 'Please enter VNI correctly', delTip: 'Are you sure you want to delete the information of IMS signing as [{num}]?', - exportTip: "Confirm exporting xlsx table files based on search criteria?", + exportTip: "Confirm exporting all VoLTE user data based on the current search criteria?", }, pcfSub: { exportTip: 'Confirm exporting all user policy control information data?', @@ -901,7 +901,7 @@ export default { neTypePlease: 'Query network element Object', neType: 'UDM Object', export: 'Export', - exportConfirm: 'Are you sure to export all authentication user data?', + exportConfirm: 'Confirm exporting all Authentication user data based on the current search criteria?', checkExport : 'Check Export', checkExportConfirm: 'Confirm exporting the checked authenticated user data?', import: 'Import', @@ -930,7 +930,7 @@ export default { subInfo:' Subscription Info', neType: 'UDM Object', export: 'Export', - exportConfirm: 'Are you sure to export all signed user data?', + exportConfirm: 'Confirm exporting all Subscribers user data based on the current search criteria?', checkExport : 'Check Export', checkExportConfirm: 'Are you sure to export the data of the checked subscribers?', import: 'Import', diff --git a/src/i18n/locales/zh-CN.ts b/src/i18n/locales/zh-CN.ts index bf3a1567..42bd011b 100644 --- a/src/i18n/locales/zh-CN.ts +++ b/src/i18n/locales/zh-CN.ts @@ -845,7 +845,7 @@ export default { passwordPlease: "请正确输入密码", addTitle: '新增VOIP用户', delTip: '确认要删除VOIP用户为【{num}】的信息吗?', - exportTip: "确认根据搜索条件导出xlsx表格文件吗?", + exportTip: "确认根据当前搜索条件导出全部VoIP用户数据吗?", }, udmVolteIMS: { startMSISDN: '起始MSISDN', @@ -854,7 +854,7 @@ export default { vniTip: '示例:ims.mnc000.mcc000.3gppnetwork.org', vniPlease: '请正确输入VNI', delTip: '确认要删除IMS签约为【{num}】的信息吗?', - exportTip: "确认根据搜索条件导出xlsx表格文件吗?", + exportTip: "确认根据当前搜索条件导出全部VoLTE用户数据吗?", }, pcfSub: { exportTip: '确认导出全部用户策略控制信息数据吗?', @@ -905,7 +905,7 @@ export default { neTypePlease: '查询网元类型', neType: 'UDM网元对象', export: '导出', - exportConfirm: '确认导出全部鉴权用户数据吗?', + exportConfirm: '确认根据当前搜索条件导出全部鉴权用户数据吗?', checkExport : '勾选导出', checkExportConfirm: '确认导出已勾选的鉴权用户数据吗?', import: '导入', @@ -936,7 +936,7 @@ export default { export: '导出', exportConfirm: '确认导出全部签约用户数据吗?', checkExport : '勾选导出', - checkExportConfirm: '确认导出已勾选的签约用户数据吗?', + checkExportConfirm: '确认根据当前搜索条件导出全部签约用户数据吗?', import: '导入', importFail: '失败记录', loadDataConfirm: '确认要重新加载数据吗?', diff --git a/src/views/neData/udm-auth/index.vue b/src/views/neData/udm-auth/index.vue index 86c457ea..60403c29 100644 --- a/src/views/neData/udm-auth/index.vue +++ b/src/views/neData/udm-auth/index.vue @@ -505,6 +505,8 @@ function fnExportList(type: string) { const neId = queryParams.neId; if (!neId) return; const hide = message.loading(t('common.loading'), 0); + queryParams.pageNum = 1; + queryParams.pageSize = tablePagination.total; exportUDMAuth(Object.assign({ type: type }, queryParams)) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/neData/udm-sub/index.vue b/src/views/neData/udm-sub/index.vue index 232c5142..8ba9955b 100644 --- a/src/views/neData/udm-sub/index.vue +++ b/src/views/neData/udm-sub/index.vue @@ -875,6 +875,8 @@ function fnExportList(type: string) { const neId = queryParams.neId; if (!neId) return; const hide = message.loading(t('common.loading'), 0); + queryParams.pageNum = 1; + queryParams.pageSize = tablePagination.total; exportUDMSub(Object.assign({ type: type }, queryParams)) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/neData/udm-voip/index.vue b/src/views/neData/udm-voip/index.vue index 98ddb348..f9e081ab 100644 --- a/src/views/neData/udm-voip/index.vue +++ b/src/views/neData/udm-voip/index.vue @@ -363,6 +363,8 @@ function fnExportList(type: string) { const neId = queryParams.neId; if (!neId) return; const hide = message.loading(t('common.loading'), 0); + queryParams.pageNum = 1; + queryParams.pageSize = tablePagination.total; exportUDMVOIP(Object.assign({ type: type }, queryParams)) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/neData/udm-volte/index.vue b/src/views/neData/udm-volte/index.vue index 0c96e32e..fa26b9cb 100644 --- a/src/views/neData/udm-volte/index.vue +++ b/src/views/neData/udm-volte/index.vue @@ -442,6 +442,8 @@ function fnExportList(type: string) { const neId = queryParams.neId; if (!neId) return; const hide = message.loading(t('common.loading'), 0); + queryParams.pageNum = 1; + queryParams.pageSize = tablePagination.total; exportUDMVolteIMS(Object.assign({ type: type }, queryParams)) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { @@ -449,7 +451,7 @@ function fnExportList(type: string) { content: t('common.operateOk'), duration: 2, }); - saveAs(res.data, `UDM_VOLTE_${neId}_${Date.now()}.${type}`); + saveAs(res.data, `UDM_VoLTE_${neId}_${Date.now()}.${type}`); } else { message.error({ content: `${res.msg}`,