diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-11-28 14:46:25 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-11-28 14:46:35 +0800 |
commit | 1f4acde5c38f72327fb02121db57d2ddb9609e99 (patch) | |
tree | a7342ce750c49a2b9769c21823bae78e5c3eb637 /usecaseui-portal/src/constants | |
parent | a7589978ffc6f942d74b7c45df61c6f090bfa991 (diff) |
Added ability to filter data based on processing status
Change-Id: I39a9cc83651745dda7844ae119429d47aa8a46b4
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.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/usecaseui-portal/src/constants/constants.ts b/usecaseui-portal/src/constants/constants.ts new file mode 100644 index 00000000..46d9f7c4 --- /dev/null +++ b/usecaseui-portal/src/constants/constants.ts @@ -0,0 +1,18 @@ +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 |