Merge branch 'main' of http://192.168.2.166:3180/OMC/ems_frontend_vue3
This commit is contained in:
@@ -75,7 +75,7 @@ type TabeStateType = {
|
||||
/**表格状态 */
|
||||
let tableState: TabeStateType = reactive({
|
||||
loading: false,
|
||||
size: 'middle',
|
||||
size: 'small',
|
||||
striped: false,
|
||||
seached: true,
|
||||
data: [],
|
||||
@@ -88,19 +88,19 @@ let tableColumns: ColumnsType = [
|
||||
dataIndex: 'imsi',
|
||||
align: 'left',
|
||||
sorter: true,
|
||||
width: 200,
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: 'AMF',
|
||||
dataIndex: 'amf',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: 'Status',
|
||||
dataIndex: 'status',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 100,
|
||||
},
|
||||
// {
|
||||
// title: 'KI',
|
||||
@@ -117,14 +117,13 @@ let tableColumns: ColumnsType = [
|
||||
{
|
||||
title: 'Algo Index',
|
||||
dataIndex: 'algoIndex',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: t('common.operate'),
|
||||
key: 'imsi',
|
||||
align: 'center',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
];
|
||||
|
||||
@@ -1275,6 +1274,7 @@ onMounted(() => {
|
||||
:hidden="!uploadImportState.msg"
|
||||
:value="uploadImportState.msg"
|
||||
:auto-size="{ minRows: 2, maxRows: 8 }"
|
||||
style="background-color: transparent; color: rgba(0, 0, 0, 0.85)"
|
||||
/>
|
||||
</template>
|
||||
</UploadModal>
|
||||
|
||||
@@ -57,7 +57,7 @@ type TabeStateType = {
|
||||
/**表格状态 */
|
||||
let tableState: TabeStateType = reactive({
|
||||
loading: false,
|
||||
size: 'middle',
|
||||
size: 'small',
|
||||
striped: false,
|
||||
seached: true,
|
||||
data: [],
|
||||
@@ -81,7 +81,7 @@ let tableColumns: ColumnsType = [
|
||||
{
|
||||
title: 'NodeB Name',
|
||||
dataIndex: 'name',
|
||||
align: 'center',
|
||||
align: 'left',
|
||||
width: 2,
|
||||
},
|
||||
{
|
||||
@@ -292,7 +292,7 @@ onMounted(() => {
|
||||
:size="tableState.size"
|
||||
:row-class-name="fnTableStriped"
|
||||
:pagination="tablePagination"
|
||||
:scroll="{ x: 1000, y: 400 }"
|
||||
:scroll="{ y: 450 }"
|
||||
>
|
||||
</a-table>
|
||||
</a-card>
|
||||
|
||||
@@ -78,7 +78,7 @@ type TabeStateType = {
|
||||
/**表格状态 */
|
||||
let tableState: TabeStateType = reactive({
|
||||
loading: false,
|
||||
size: 'middle',
|
||||
size: 'small',
|
||||
striped: false,
|
||||
seached: true,
|
||||
data: [],
|
||||
@@ -111,55 +111,54 @@ let tableColumns: ColumnsType = [
|
||||
{
|
||||
title: 'Subscribed AMBR Temp',
|
||||
dataIndex: 'ambr',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: 'Subscribed SNSSAIs Temp',
|
||||
dataIndex: 'sar',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: 'RAT Restriction',
|
||||
dataIndex: 'rat',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: 'Forbidden Areas Temp',
|
||||
dataIndex: 'arfb',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: 'Service Area Restrict Temp',
|
||||
dataIndex: 'nssai',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: 'CN Type Restriction',
|
||||
dataIndex: 'cn',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
},
|
||||
{
|
||||
title: 'Subscribed Data',
|
||||
dataIndex: 'smData',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: 'EPS Flag',
|
||||
dataIndex: 'epsFlag',
|
||||
align: 'center',
|
||||
minWidth: 100,
|
||||
align: 'left',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: 'Subscribed Data',
|
||||
dataIndex: 'smData',
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: t('common.operate'),
|
||||
key: 'imsi',
|
||||
align: 'center',
|
||||
align: 'left',
|
||||
fixed: 'right',
|
||||
width: 100,
|
||||
},
|
||||
@@ -2067,6 +2066,7 @@ onMounted(() => {
|
||||
:hidden="!uploadImportState.msg"
|
||||
:value="uploadImportState.msg"
|
||||
:auto-size="{ minRows: 2, maxRows: 8 }"
|
||||
style="background-color: transparent; color: rgba(0, 0, 0, 0.85)"
|
||||
/>
|
||||
</template>
|
||||
</UploadModal>
|
||||
|
||||
Reference in New Issue
Block a user