From 460a4e1b3bb75215ed4124790955419c399ffc18 Mon Sep 17 00:00:00 2001 From: zhongzm Date: Tue, 15 Apr 2025 20:22:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:UDMIMS=E7=95=8C=E9=9D=A2=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/neUser/imsUDM/index.vue | 60 ++----------------------------- 1 file changed, 3 insertions(+), 57 deletions(-) diff --git a/src/views/neUser/imsUDM/index.vue b/src/views/neUser/imsUDM/index.vue index 36753b2d..9ffef747 100644 --- a/src/views/neUser/imsUDM/index.vue +++ b/src/views/neUser/imsUDM/index.vue @@ -113,26 +113,6 @@ let tableColumns = ref([ sorter: true, width: 150, }, - { - title: 'NEID', - dataIndex: 'neId', - align: 'center', - sorter: true, - width: 100, - }, - { - title: 'Tenant ID', - dataIndex: 'tenantID', - align: 'center', - sorter: true, - width: 150, - }, - { - title: 'Tenant Name', - dataIndex: 'tenantName', - align: 'center', - width: 150, - }, { title: 'VNI', dataIndex: 'vni', @@ -330,27 +310,6 @@ const modalStateFrom = Form.useForm( }) ); -function fnTenantNameFocus() { - Promise.allSettled([listTenant({ parentId: 0 })]).then(resArr => { - if (resArr[0].status === 'fulfilled') { - var tenantNameData = resArr[0].value; - if ( - tenantNameData.code === RESULT_CODE_SUCCESS && - Array.isArray(tenantNameData.data) - ) { - modalStateFromOption.tenantName = []; //上面置为空数组时会报错 故在此 - tenantNameData.data.forEach((item: any) => { - if (item.parentId === '0') { - modalStateFromOption.tenantName.push({ - value: item.tenantName, - label: item.tenantName, - }); - } - }); - } - } - }); -} /**对话框内批量删除表单属性和校验规则 */ const modalStateBatchDelFrom = Form.useForm( modalState.BatchDelForm, @@ -594,7 +553,7 @@ function fnRecordExport(type: string = 'txt') { .then(res => { if (res.code === RESULT_CODE_SUCCESS) { message.success(t('common.msgSuccess', { msg: t('common.export') }), 3); - saveAs(res.data, `UDMAuth_select_${Date.now()}.${type}`); + saveAs(res.data, `UDMIMS_select_${Date.now()}.${type}`); } else { message.error(`${res.msg}`, 3); } @@ -613,7 +572,7 @@ function fnExportList(type: string) { .then(res => { if (res.code === RESULT_CODE_SUCCESS) { message.success(t('common.msgSuccess', { msg: t('common.export') }), 3); - saveAs(res.data, `UDMAuth_${Date.now()}.${type}`); + saveAs(res.data, `UDMIMS_${Date.now()}.${type}`); } else { message.error(`${res.msg}`, 3); } @@ -675,7 +634,6 @@ function fnGetList(pageNum?: number) { const toBack: any = { imsi: imsiMatchRule[queryParams.imsiMatch] || '', msisdn: queryParams.msisdn, - tenantName: queryParams.tenantName, sortField: queryParams.sortField, sortOrder: queryParams.sortOrder, pageNum: queryParams.pageNum, @@ -899,18 +857,6 @@ onMounted(() => { - - - - - @@ -1041,7 +987,7 @@ onMounted(() => {