fix: radio information page

This commit is contained in:
2024-01-24 10:30:35 +08:00
parent 9a36eb81d7
commit 63309e7d4c
3 changed files with 5 additions and 5 deletions

View File

@@ -572,7 +572,7 @@ export default {
uploadFileErr: 'File Upload Failed', uploadFileErr: 'File Upload Failed',
}, },
base5G: { base5G: {
neType: 'AMF Object', neType: 'NE Object',
}, },
n3iwf: { n3iwf: {
neType: 'N3IWF Object', neType: 'N3IWF Object',

View File

@@ -572,7 +572,7 @@ export default {
uploadFileErr: '文件上传失败', uploadFileErr: '文件上传失败',
}, },
base5G: { base5G: {
neType: 'AMF网元对象', neType: '网元对象',
}, },
n3iwf: { n3iwf: {
neType: 'N3IWF网元对象', neType: 'N3IWF网元对象',

View File

@@ -67,7 +67,7 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */ /**表格字段列 */
let tableColumns: ColumnsType = [ let tableColumns: ColumnsType = [
{ {
title: 'Radios ID', title: 'Radio ID',
dataIndex: 'id', dataIndex: 'id',
align: 'center', align: 'center',
width: 100, width: 100,
@@ -79,13 +79,13 @@ let tableColumns: ColumnsType = [
width: 100, width: 100,
}, },
{ {
title: 'Radios Name', title: 'Radio Name',
dataIndex: 'name', dataIndex: 'name',
align: 'center', align: 'center',
width: 150, width: 150,
}, },
{ {
title: 'Radios Address', title: 'Radio Address',
dataIndex: 'address', dataIndex: 'address',
align: 'left', align: 'left',
}, },