@gsp-wf/ui-flowchart
v1.1.14
Published
```ts import { UiFlowchartModule } from '@gsp-wf/ui-flowchart'; ``` ```ts import { Component } from '@angular/core';
Downloads
29
Keywords
Readme
工作流查看流程图组件
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-flowchart
or else it will be added to the default project in yourangular.json
file.
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.