blob: 5c6eb369ea763a2db1c9f958a39831c30214ee42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
import { Component, OnInit } from '@angular/core';
import * as moment from 'moment';
import { SlicingTaskServices } from '.././../../../core/services/slicingTaskServices';
import { TASK_PROCESSING_STATUS } from '../../../../../constants/constants';
@Component({
selector: 'app-slicing-task-management',
templateUrl: './slicing-task-management.component.html',
styleUrls: ['./slicing-task-management.component.less']
})
export class SlicingTaskManagementComponent implements OnInit {
constructor(private myhttp: SlicingTaskServices) { }
ngOnInit() {
this.getTaskList()
}
showDetail: boolean = false;
selectedValue = null;
// detailData: object = {};
taskId: string;
moduleTitle: string = "";
listOfData: any[] = [];
statusOptions: any[] = TASK_PROCESSING_STATUS;
getTaskList (): void{
this.myhttp.getSlicingTaskList('1', '10').subscribe (res => {
const { result_header: { result_code }, result_body: { slicing_task_list } } = res
if (+result_code === 200) {
this.dataFormatting(slicing_task_list)
}
})
}
getListOfProcessingStatus():void {
this.myhttp.getTaskProcessingStatus(this.selectedValue, '1', '10').subscribe (res => {
const { result_header: { result_code }, result_body: { slicing_task_list } } = res
if (+result_code === 200) {
this.dataFormatting(slicing_task_list)
}
})
}
dataFormatting(list: any):void{
this.listOfData = list.map( item => {
item.arrival_time = moment(+item.arrival_time).format('YYYY-MM-DD hh:mm')
switch (item.processing_status){
case 'Planning':
item.status = '规划阶段';
item.operation = '任务处理'
break;
case 'Waiting to Confirm':
item.status = '审核阶段';
item.operation = '任务处理'
break;
case 'Creating':
item.status = '切片创建中';
item.operation = '查看进度'
break;
case 'Completed':
item.status = '创建完成';
item.operation = '查看结果'
break;
}
return item;
})
}
showdetail(data: any): void {
this.taskId = data.task_id;
this.showDetail = true;
this.moduleTitle = data.status;
}
}
|