Files
bbq/src/app/routes/sys-setting/components/staff-management/transpower/transpower.component.html
Taric Xin a6a0a9f7fb edit
2022-01-04 17:18:05 +08:00

22 lines
926 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<form nz-form #f="ngForm" se-container="1" labelWidth="100">
<se label="转授对象">{{i.name}}{{i.telephone}}</se>
<se style="margin:0">
<div class="code">为了账户安全,需超管手机验证({{ superPhone }}</div>
</se>
<se label="验证码">
<div nz-row [nzGutter]="8">
<div nz-col [nzSpan]="12">
<input nz-input name="smsVerifyCode" [(ngModel)]="smsVerifyCode" maxlength="6" placeholder="请输入短信验证码" />
</div>
<div nz-col [nzSpan]="12">
<button nz-button (click)="sendCode()" [disabled]="count > 0">
{{ count > 0 ? '请等待' + count + 's' : '发送验证码' }}
</button>
</div>
</div>
</se>
</form>
<div class="modal-footer">
<button nz-button type="button" (click)="close()">取消</button>
<button nz-button type="button" (click)="sure()" [disabled]="f.invalid" nzType="primary">确定</button>
</div>