1 import { Component, OnInit } from '@angular/core';
4 selector: 'app-slicing-task-management',
5 templateUrl: './slicing-task-management.component.html',
6 styleUrls: ['./slicing-task-management.component.less']
8 export class SlicingTaskManagementComponent implements OnInit {
13 showDetail: boolean = false;
15 detailData: object = {};
16 moduleTitle: string = "";
37 showdetail(data: any) {
38 console.log(data, this.showDetail)
39 this.detailData = data;
40 this.showDetail = true;
41 this.moduleTitle = data.status === 0 ? "Check Configuration" : "View Progress";