更正-详情信息添加upState字段
This commit is contained in:
@@ -18,8 +18,6 @@ let neOtions = ref<Record<string, any>[]>([]);
|
||||
let queryParams = reactive({
|
||||
/**网元ID */
|
||||
neId: undefined,
|
||||
/**用户在线状态 */
|
||||
upState: undefined,
|
||||
/**IMSI */
|
||||
imsi: '',
|
||||
/**msisdn */
|
||||
@@ -35,7 +33,6 @@ function fnQueryReset() {
|
||||
queryParams = Object.assign(queryParams, {
|
||||
imsi: '',
|
||||
msisdn: '',
|
||||
upState: undefined,
|
||||
pageNum: 1,
|
||||
pageSize: 20,
|
||||
});
|
||||
@@ -121,12 +118,6 @@ let tableColumns: ColumnsType = [
|
||||
},
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: 'Up State',
|
||||
dataIndex: 'upState',
|
||||
align: 'center',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: t('common.operate'),
|
||||
key: 'imsi',
|
||||
@@ -308,18 +299,6 @@ onMounted(() => {
|
||||
/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="8" :md="12" :xs="24">
|
||||
<a-form-item label="Up State" name="upState">
|
||||
<a-select
|
||||
v-model:value="queryParams.upState"
|
||||
allow-clear
|
||||
:placeholder="t('common.selectPlease')"
|
||||
>
|
||||
<a-select-option value="Inactive">Inactive</a-select-option>
|
||||
<a-select-option value="Active">Active</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="8" :md="12" :xs="24">
|
||||
<a-form-item label="IMSI" name="imsi">
|
||||
<a-input v-model:value="queryParams.imsi" allow-clear></a-input>
|
||||
@@ -462,24 +441,27 @@ onMounted(() => {
|
||||
v-for="v in modalState.from.pduSessionInfo"
|
||||
:key="v.dnn"
|
||||
>
|
||||
<a-descriptions-item label="PDU Session ID">
|
||||
{{ v.pduSessionID }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="User Plane State">
|
||||
{{ v.upState }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="IPV4">{{ v.ipv4 }}</a-descriptions-item>
|
||||
<a-descriptions-item label="IPV6">{{ v.ipv6 }}</a-descriptions-item>
|
||||
<a-descriptions-item label="TAI">{{ v.tai }}</a-descriptions-item>
|
||||
<a-descriptions-item label="SST_SD">
|
||||
<a-descriptions-item label="SST-SD">
|
||||
{{ v.sstSD }}</a-descriptions-item
|
||||
>
|
||||
<a-descriptions-item label="UPF_N3_IP">
|
||||
<a-descriptions-item label="UPF N3 IP">
|
||||
{{ v.upfN3IP }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="RAN_N3_IP">
|
||||
<a-descriptions-item label="RAN N3 IP">
|
||||
{{ v.ranN3IP }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="ActiveTime">
|
||||
<a-descriptions-item label="Create Time">
|
||||
{{ v.activeTime }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="pduSessionId">
|
||||
{{ v.pduSessionID }}
|
||||
</a-descriptions-item>
|
||||
</a-descriptions>
|
||||
</a-form>
|
||||
</DraggableModal>
|
||||
|
||||
Reference in New Issue
Block a user