From ab3256d731b6c439f16869c3f193483532d57e23 Mon Sep 17 00:00:00 2001 From: cyuamber Date: Fri, 29 Nov 2019 08:50:25 +0800 Subject: feat: Completed the initial display of the task processing dialog Change-Id: I2734c934344e43d504df01e72b9a71a3cfa0e275 Issue-ID: USECASEUI-352 Signed-off-by: cyuamber --- usecaseui-portal/src/constants/constants.ts | 90 +++++++++++++++++++++++------ 1 file changed, 73 insertions(+), 17 deletions(-) (limited to 'usecaseui-portal/src/constants') diff --git a/usecaseui-portal/src/constants/constants.ts b/usecaseui-portal/src/constants/constants.ts index 46d9f7c4..a83178b5 100644 --- a/usecaseui-portal/src/constants/constants.ts +++ b/usecaseui-portal/src/constants/constants.ts @@ -1,18 +1,74 @@ export const TASK_PROCESSING_STATUS = [ - { - title: '规划阶段', - value: 'Planning' - }, - { - title: '审核阶段', - value: 'Waiting to Confirm' - }, - { - title: '切片创建中', - value: 'Creating' - }, - { - title: '创建完成', - value: 'Completed' - } - ] \ No newline at end of file + { + title: '规划阶段', + value: 'Planning' + }, + { + title: '审核阶段', + value: 'Waiting to Confirm' + }, + { + title: '切片创建中', + value: 'Creating' + }, + { + title: '创建完成', + value: 'Completed' + } +] + +export const BUSINESS_REQUIREMENT = [ + { + title: '切片业务名称', + key: 'service_name' + }, + { + title: 'S-NSSAI', + key: 'service_snssai' + }, + { + title: '用户下行带宽(Mbps)', + key: 'exp_data_rate_dl' + }, + { + title: '用户上行带宽(Mbps)', + key: 'exp_data_rate_u' + }, + { + title: '游牧性', + key: 'ue_mobility_level' + }, + { + title: '时延(ms)', + key: 'latency' + }, + { + title: '使用期限(月)', + key: 'use_interval' + }, + { + title: '区域', + key: 'coverage_area_ta_list' + }, + { + title: '激活因子(%)', + key: 'activity_factor' + }, + { + title: '共享等级', + key: 'resource_sharing_level' + }, + { + title: '上行区域流量密度(Mbps/km )', + key: 'area_traffic_cap_ul' + }, + { + title: '连接规模数', + key: 'max_number_of_ues' + }, + { + title: '下行区域流量密度(Mbps/km )', + key: 'area_traffic_cap_dl' + } + +] -- cgit 1.2.3-korg