This commit is contained in:
2023-11-28 19:42:50 +08:00
23 changed files with 411 additions and 125 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>