problem description
now there are three buttons. When I click one, the disabled of the other two will become unavailable. The buttons are the following
<button nz-button nzType="primary" [disabled]="!validateForm.valid " (click)="getBtnType(1)">&</button>
<button nz-button nzType="primary" [disabled]="!validateForm.valid " (click)="getBtnType(2)">&</button>
<button nz-button (click)="resetForm($event)"></button>
I"m a little dizzy.