From 58919ad4d4c8283bab29a6841155170bc6bd75f1 Mon Sep 17 00:00:00 2001 From: zhongzm Date: Fri, 11 Apr 2025 15:43:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:IMSSUB=E7=95=8C=E9=9D=A2=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=EF=BC=8C=E5=A2=9E=E5=8A=A0=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/neUser/imsUDM/index.vue | 354 ++++++++++++++++-------------- 1 file changed, 187 insertions(+), 167 deletions(-) diff --git a/src/views/neUser/imsUDM/index.vue b/src/views/neUser/imsUDM/index.vue index 231b5c01..5ccad1df 100644 --- a/src/views/neUser/imsUDM/index.vue +++ b/src/views/neUser/imsUDM/index.vue @@ -43,6 +43,8 @@ let queryParams = reactive({ tenantName: '', /**移动号 */ msisdn: '', + /**TAG */ + tag: undefined, /**排序字段 */ sortField: 'imsi', /**排序方式 */ @@ -60,6 +62,7 @@ function fnQueryReset() { imsiMatch: 'fuzzy', msisdn: '', tenantName: '', + tag: undefined, sortField: 'imsi', sortOrder: 'asc', pageNum: 1, @@ -121,6 +124,13 @@ let tableColumns = ref([ sorter: true, width: 100, }, + { + title: 'TAG', + dataIndex: 'tag', + align: 'center', + width: 150, + key: 'tag' + }, { title: 'TenantID', dataIndex: 'tenantID', @@ -140,12 +150,6 @@ let tableColumns = ref([ align: 'center', width: 150, }, - { - title: 'TAG', - dataIndex: 'tag', - align: 'center', - width: 150, - }, { title: t('common.operate'), key: 'imsi', @@ -367,7 +371,7 @@ const modalStateFrom = Form.useForm( ], imsi: [ { - required: computed(() => modalState.from.tag === '0'), + required: computed(() => modalState.from.tag === '1'), message: 'IMSI' + t('common.unableNull') }, { min: 15, max: 15, message: t('views.neUser.auth.imsiConfirm') }, @@ -1076,7 +1080,7 @@ onMounted(() => { if (res.data.length > 0) { let arr: Record[] = []; res.data.forEach(i => { - if (i.neType === 'IMS') { + if (i.neType === 'UDM') { arr.push({ value: i.neId, label: i.neName }); } }); @@ -1110,7 +1114,7 @@ onMounted(() => { - + { :placeholder="t('common.inputPlease')"> + + + + + { {{ t('views.neUser.auth.batchDelText') }} - - - - {{ t('views.neUser.sub.loadData') }} - - + + + + {{ t('views.neUser.sub.loadData') }} + + @@ -1369,6 +1386,9 @@ onMounted(() => { : t('views.neUser.sub.disable') }} +