From 107f0ae0a4963682bfe8ce10ef9ba2b0f87ec8b7 Mon Sep 17 00:00:00 2001 From: cyuamber Date: Fri, 28 Aug 2020 09:06:45 +0800 Subject: feat: Three new parameters for Endpoint of An/Cn 5G slicingTast Change-Id: If29e1b67c9fcdec31950cd38d0cadba4eb55010c Issue-ID: USECASEUI-444 Signed-off-by: cyuamber --- usecaseui-portal/src/constants/constants.ts | 78 ++++++++++++++++++++--------- 1 file changed, 53 insertions(+), 25 deletions(-) (limited to 'usecaseui-portal/src/constants') diff --git a/usecaseui-portal/src/constants/constants.ts b/usecaseui-portal/src/constants/constants.ts index 8d8af354..3469dd93 100644 --- a/usecaseui-portal/src/constants/constants.ts +++ b/usecaseui-portal/src/constants/constants.ts @@ -191,18 +191,24 @@ export const CORE_FORM_ITEMS = { title: 'overallUserDensity', key: 'an_overalluser_density' }, - // { - // title: 'IP Address', - // key: 'an_ip_address' - // }, - // { - // title: 'Logical Link', - // key: 'an_logical_link' - // }, - // { - // title: 'Nexthop Info', - // key: 'an_nexthop_info' - // }, + { + title:'Endpoint', + key:"an_Endpoint", + options: [ + { + title: 'ip_address', + key: 'an_ip_address' + }, + { + title: 'logical_link', + key: 'an_logical_link' + }, + { + title: 'nexthop_info', + key: 'an_nexthop_info' + } + ] + }, { title: 'Coverage Area Ta List', key: 'an_coverage_area_ta_list' @@ -285,19 +291,25 @@ export const CORE_FORM_ITEMS = { title: 'overallUserDensity', key: 'cn_overalluser_density' }, - // { - // title: 'IP Address', - // key: 'an_ip_address' - // }, - // { - // title: 'Logical Link', - // key: 'an_logical_link' - // }, - // { - // title: 'Nexthop Info', - // key: 'an_nexthop_info' - // } - ] + { + title:'Endpoint', + key:"cn_Endpoint", + options: [ + { + title: 'ip_address', + key: 'cn_ip_address' + }, + { + title: 'logical_link', + key: 'cn_logical_link' + }, + { + title: 'nexthop_info', + key: 'cn_nexthop_info' + } + ] + }, + ] } export const ADDRESS = [ @@ -344,6 +356,22 @@ export const ADDRESS = [ }] } ] + +export const NexthopInfo_Options = [ + { + title:"test_info_01", + key:"test_info_01" + }, + { + title:"test_info_02", + key:"test_info_02" + }, + { + title:"test_info_03", + key:"test_info_03" + } +] + export const BUSINESS_STATUS = [ "All", "Activated", "Deactivated" ] -- cgit 1.2.3-korg