78 lines
2.7 KiB
HTML
78 lines
2.7 KiB
HTML
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-11-29 15:22:34
|
|
* @LastEditTime : 2022-02-16 09:58:52
|
|
* @LastEditors : Shiming
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\usercenter\\components\\driver\\captain\\captain.component.html
|
|
-->
|
|
<!-- 页头 -->
|
|
<page-header-wrapper></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">
|
|
<button
|
|
nz-button
|
|
nzType="primary"
|
|
[nzLoading]="service.http.loading"
|
|
(click)="st?.load(1)"
|
|
acl
|
|
[acl-ability]="['USERCENTER-DRIVER-CAPTAIN-list']"
|
|
>查询</button
|
|
>
|
|
<button
|
|
nz-button
|
|
nzType="primary"
|
|
[disabled]="service.http.loading"
|
|
(click)="exportList()"
|
|
acl
|
|
[acl-ability]="['USERCENTER-DRIVER-CAPTAIN-export']"
|
|
>导出</button
|
|
>
|
|
<button nz-button (click)="resetSF()" [disabled]="service.http.loading">重置</button>
|
|
<button nz-button nzType="link" (click)="expandToggle()">
|
|
{{ !_$expand ? '展开' : '收起' }}
|
|
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nz-card>
|
|
<nz-card>
|
|
<!-- 数据列表 -->
|
|
<!-- 工具栏 -->
|
|
<div class="toolbar" style="float: right;
|
|
padding-bottom: 15px;">
|
|
<button nz-button nzType="primary" (click)="add()">添加车队长</button>
|
|
</div>
|
|
<st
|
|
#st
|
|
[columns]="columns"
|
|
[data]="service.$api_get_user_expand"
|
|
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
|
[res]="{ reName: { list: 'data.records', total: 'data.total' }, process: dataProcess }"
|
|
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
|
|
[loading]="service.http.loading"
|
|
>
|
|
<ng-template st-row="promotersTelephone" let-item let-index="index">
|
|
<a (click)="addPromoter(item)" acl [acl-ability]="['USERCENTER-DRIVER-CAPTAIN-promoter']">
|
|
{{ 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>
|