summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/constants
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-11-29 08:50:25 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-11-29 08:50:34 +0800
commitab3256d731b6c439f16869c3f193483532d57e23 (patch)
treecdd5f701c3562851bed4a469d380f0f6abeb495e /usecaseui-portal/src/constants
parent1f4acde5c38f72327fb02121db57d2ddb9609e99 (diff)
feat: Completed the initial display of the task processing dialog
Change-Id: I2734c934344e43d504df01e72b9a71a3cfa0e275 Issue-ID: USECASEUI-352 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/constants')
-rw-r--r--usecaseui-portal/src/constants/constants.ts90
1 files changed, 73 insertions, 17 deletions
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'
+ }
+
+]