Commit f29656d6 authored by wangqinghua's avatar wangqinghua

workService

parent 60d6f195
......@@ -35,6 +35,15 @@
<button (click)="showGroupModal()" nz-button nzType="primary">新增组织</button>
</div>
<nz-tree [(ngModel)]="nodes">
<ng-template #nzTreeTemplate let-node>
<span class="custom-node" draggable="true" aria-grabbed="true" [class.active]="node.isSelected">
<span>
{{node.title}}
<i style="margin-left: 20px;" class="anticon anticon-edit"></i>
<i class="anticon anticon-close-circle-o"></i>
</span>
</span>
</ng-template>
</nz-tree>
</div>
<div nz-col nzSpan="18">
......
......@@ -20,7 +20,7 @@
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="comment">角色说明</nz-form-label>
<nz-form-control [nzSm]="14" [nzXs]="24">
<textarea id="comment" row="4" nz-input formControlName="comment"></textarea>
<textarea id="comment " row="4" nz-input formControlName="comment"></textarea>
<nz-form-explain *ngIf="validateForm.get('comment').dirty && validateForm.get('comment').errors">请输入角色说明!</nz-form-explain>
</nz-form-control>
</nz-form-item>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment