diff --git a/src/views/neUser/ue/index.vue b/src/views/neUser/ue/index.vue index c2d16379..5b43ddc3 100644 --- a/src/views/neUser/ue/index.vue +++ b/src/views/neUser/ue/index.vue @@ -18,6 +18,8 @@ let neOtions = ref[]>([]); let queryParams = reactive({ /**网元ID */ neId: undefined, + /**用户在线状态 */ + upState: 'Active', /**IMSI */ imsi: '', /**msisdn */ @@ -33,6 +35,7 @@ function fnQueryReset() { queryParams = Object.assign(queryParams, { imsi: '', msisdn: '', + upState: 'Active', pageNum: 1, pageSize: 20, }); @@ -59,7 +62,7 @@ type TabeStateType = { let tableState: TabeStateType = reactive({ loading: false, size: 'middle', - seached: true, + seached: false, data: [], selectedRowKeys: [], }); @@ -118,6 +121,12 @@ let tableColumns: ColumnsType = [ }, width: 150, }, + { + title: 'Up State', + dataIndex: 'upState', + align: 'center', + width: 100, + }, { title: t('common.operate'), key: 'imsi', @@ -290,7 +299,7 @@ onMounted(() => { - + { /> - + + + + Inactive + Active + + + + - + - + +