| | |
| | | </div> |
| | | <div nz-col [nzSpan]="8" class="mb-md"> |
| | | <div nz-form-item class="d-flex"> |
| | | <div nz-form-label><label for="u_mobile">账号</label></div> |
| | | <div nz-form-label><label for="u_mobile">账号/电话</label></div> |
| | | <div nz-form-control class="flex-1"> |
| | | <nz-input [(ngModel)]="q.u_mobile" name="u_mobile" [nzSize]="'large'" [nzPlaceHolder]="'请输入账号'" nzId="u_mobile"></nz-input> |
| | | </div> |
| | |
| | | </div> |
| | | <div nz-col [nzSpan]="8" class="mb-md"> |
| | | <button nz-button type="submit" [nzType]="'primary'" [nzLoading]="loading" [nzSize]="'large'">查询</button> |
| | | <button nz-button type="reset" (click)="load(true)" [nzSize]="'large'" class="mx-sm">重置</button> |
| | | <button nz-button type="reset" [nzSize]="'large'" class="mx-sm">重置</button> |
| | | </div> |
| | | </div> |
| | | </form> |
| | |
| | | </div> |
| | | <nz-table #nzTable |
| | | [nzAjaxData]="data" |
| | | [nzLoading]="http.loading" |
| | | [nzLoading]="loading" |
| | | [nzTotal]="total" |
| | | [(nzPageIndex)]="q.pi" |
| | | [nzPageSize]="q.ps" |
| | |
| | | <label nz-checkbox [(ngModel)]="allChecked" [nzIndeterminate]="indeterminate" (ngModelChange)="checkAll($event)"></label> |
| | | </th> |
| | | <th nz-th><span>姓名</span></th> |
| | | <th nz-th><span>账号</span></th> |
| | | <th nz-th><span>账号/电话</span></th> |
| | | <th nz-th><span>电子邮件</span></th> |
| | | <th nz-th><span>微信号</span></th> |
| | | <th nz-th><span>密码</span></th> |
| | | <th nz-th><span>组织</span></th> |
| | | <th nz-th><span>创建日期</span></th> |
| | | <th nz-th> |
| | |
| | | <td nz-td>{{i.mobile}}</td> |
| | | <td nz-td>{{i.email}}</td> |
| | | <td nz-td>{{i.weixin}}</td> |
| | | <td nz-td>{{i.password}}</td> |
| | | <td nz-td>{{i.organizationId}}</td> |
| | | <td nz-td>{{format_date(i.createTime)}}</td> |
| | | <td nz-td>{{format_date(i.expireTime)}}</td> |
| | | <td nz-td> |
| | | <a (click)="edit(i)">编辑</a> |
| | | <ng-container *ngIf="i.isDelete == '0'"> |
| | | <span nz-table-divider></span> |
| | | <nz-popconfirm [nzTitle]="'确定要删除该用户吗?'" [nzOkText]="'Yes'" [nzCancelText]="'No'" (nzOnConfirm)="delete(i)" > |
| | | <a nz-popconfirm>删除</a> |
| | | </nz-popconfirm> |
| | | </ng-container> |
| | | </td> |
| | | </tr> |
| | | </tbody> |