|
@@ -51,13 +51,15 @@ export class PlanPanelComponent {
|
|
|
|
|
|
made.value = this.data?.troubleshootResolveInfo?.unissued || 0;
|
|
|
made.percent = this.data?.troubleshootResolveInfo?.unissuedPercentage || '0%';
|
|
|
- publish.value = this.data?.troubleshootResolveInfo?.uninitiated || 0;
|
|
|
|
|
|
+ publish.value = this.data?.troubleshootResolveInfo?.uninitiated || 0;
|
|
|
publish.percent = this.data?.troubleshootResolveInfo?.uninitiatedPercentage || '0%';
|
|
|
- processing.value = this.data?.troubleshootResolveInfo?.initiated || 0;
|
|
|
|
|
|
+ processing.value = this.data?.troubleshootResolveInfo?.initiated || 0;
|
|
|
processing.percent = this.data?.troubleshootResolveInfo?.initiatedPercentage || '0%';
|
|
|
+
|
|
|
completed.value = this.data?.troubleshootResolveInfo?.completed || 0;
|
|
|
+ completed.percent = this.data?.troubleshootResolveInfo?.completedPercentage || '0%';
|
|
|
|
|
|
this.infos = this.infos.slice(); // for refreshing chart
|
|
|
}
|