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') }} +