45 lines
1.9 KiB
HTML
45 lines
1.9 KiB
HTML
<!-- 页头 -->
|
|
<page-header-wrapper [title]="'司机列表'"></page-header-wrapper>
|
|
<nz-card>
|
|
<!-- 搜索表单 -->
|
|
<div nz-row nzGutter="8">
|
|
<div nz-col [nzXl]="_$expand ? 24 : 18" [nzLg]="24" [nzSm]="24" [nzXs]="24">
|
|
<sf #sf [schema]="schema" [ui]="ui" [compact]="true" [button]="'none'"></sf>
|
|
</div>
|
|
<div nz-col [nzXl]="_$expand ? 24 : 6" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right"
|
|
[class.expend-options]="_$expand">
|
|
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="exportList()">导出</button>
|
|
<button nz-button nzType="primary" [disabled]="!sf.valid" [nzLoading]="service.http.loading"
|
|
(click)="st?.load(1)">查询</button>
|
|
<button nz-button (click)="resetSF()">重置</button>
|
|
<button nz-button nzType="link" (click)="expandToggle()">
|
|
{{ !_$expand ? '展开' : '收起' }}
|
|
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nz-card>
|
|
<nz-card>
|
|
<!-- 数据列表 -->
|
|
<!-- [data]="service.$api_get_supplier_page" -->
|
|
|
|
<st #st [columns]="columns" [data]='service.$api_get_driver_list'
|
|
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
|
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
|
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }" [loadingDelay]="500"
|
|
[loading]="service.http.loading">
|
|
<ng-template st-row="promotersTelephone" let-item let-index="index">
|
|
<a (click)="addPromoter(item)">{{ item.promotersTelephone || '添加' }}</a>
|
|
</ng-template>
|
|
</st>
|
|
</nz-card>
|
|
|
|
<ng-template #promoterModal>
|
|
<div nz-row nzGutter="8">
|
|
<div nz-col nzSpan="24" se-container [labelWidth]="80">
|
|
<se [col]="1" label="手机号">
|
|
<input nz-input [(ngModel)]="promotersTelephone" maxlength="11" required />
|
|
</se>
|
|
</div>
|
|
</div>
|
|
</ng-template> |