@gsp-wf/ui-flowchart v1.1.14
工作流查看流程图组件
import { UiFlowchartModule } from '@gsp-wf/ui-flowchart';import { Component } from '@angular/core';
@Component({
selector: 'wf-flowchart',
templateUrl: './task-flowchart.component.html',
styleUrls: ['./task-flowchart.component.css']
})
export class UIFlowchartComponent {
private taskId: string;
@Input()
set workItemId(workItemId: string) {
this.taskId = workItemId;
this.viewFlowChart();
this.viewBizLogs();
}
get workItemId() {
return this.taskId;
}
}This library was generated with Angular CLI version 7.2.0.
Code scaffolding
Run ng generate component component-name --project ui-flowchart to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project ui-flowchart.
Note: Don't forget to add
--project ui-flowchartor else it will be added to the default project in yourangular.jsonfile.
Build
Run ng build ui-flowchart to build the project. The build artifacts will be stored in the dist/ directory.
Publishing
After building your library with ng build ui-flowchart, go to the dist folder cd dist/ui-flowchart and run npm publish.
Running unit tests
Run ng test ui-flowchart to execute the unit tests via Karma.
Further help
To get more help on the Angular CLI use ng help or go check out the Angular CLI README.
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago