99 lines
4.7 KiB
HTML
99 lines
4.7 KiB
HTML
<page-header-wrapper [title]="''"></page-header-wrapper>
|
|
|
|
<nz-card>
|
|
<!-- 搜索表单 -->
|
|
<div nz-row nzGutter="8">
|
|
<div nz-col [nzSpan]="_$expand ? 24 : 18">
|
|
<sf #sf [schema]="schema" [ui]="ui" [compact]="true" [button]="'none'"></sf>
|
|
</div>
|
|
<div nz-col [nzSpan]="_$expand ? 24 : 6" [class.text-right]="_$expand">
|
|
<button nz-button nzType="primary" [disabled]="!sf.valid" [nzLoading]="isLoading && st.loading" (click)="search()" >查询</button>
|
|
<button nz-button (click)="resetSF()">重置</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>
|
|
<nz-tabset [nzTabBarExtraContent]="extraTemplate" *ngIf="tabs.length>0">
|
|
|
|
<nz-tab *ngFor="let tab of tabs" [nzTitle]="tab.name" (nzSelect)="selectChange(tab)">
|
|
</nz-tab>
|
|
</nz-tabset>
|
|
<!-- 数据列表 -->
|
|
<st #st [scroll]="{x:'1200px'}" [data]="service.$api_getTaxOrderPage_page" [columns]="columns"
|
|
[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, 50, 100] }" [loading]="service.http.loading">
|
|
<ng-template st-row="putStatus" let-item let-index="index">
|
|
<!-- <a (click)="viewAuditResult(item)" *ngIf="item?.billStatus === '2'">{{item?.billStatusLabel}}</a> -->
|
|
<span *ngIf="item?.putStatus == '0'">待上传</span>
|
|
<span *ngIf="item?.putStatus == '1'">已上传</span>
|
|
<span *ngIf="item?.putStatus == '3'">上传中</span>
|
|
<span *ngIf="item?.putStatus == '2'" style="color: red;" (click)="unnormal(item)">上传异常</span>
|
|
</ng-template>
|
|
<ng-template st-row="invoiceNO" let-item let-index="index">
|
|
<a href="/">{{item.billCode}}</a>
|
|
</ng-template>
|
|
<ng-template st-row="checkStatus" let-item let-index="index">
|
|
<!-- <a (click)="viewAuditResult(item)" *ngIf="item?.billStatus === '2'">{{item?.billStatusLabel}}</a> -->
|
|
<span *ngIf="item?.checkStatus == '0'">校验中</span>
|
|
<span *ngIf="item?.checkStatus == '1'">通过</span>
|
|
<!-- <span *ngIf="item?.checkStatus == '2'" style="color: red;" (click)="unnormal(item)">不通过</span> -->
|
|
<span *ngIf="item?.checkStatus == '2'" style="color: red;" (click)="viewResult(item)">不通过</span>
|
|
|
|
</ng-template>
|
|
<ng-template st-row="driverName" let-item let-index="index">
|
|
<div> {{ item?.driverName }}{{ item?.driverPhone ? "/" + item?.driverPhone : '' }} </div>
|
|
</ng-template>
|
|
<!-- <ng-template st-row="localValid" let-item let-index="index">
|
|
<a (click)="viewResult(item)" *ngIf="item?.billStatus === '2'">{{item?.billStatusLabel}}</a>
|
|
<span *ngIf="item?.billStatus !== '2'">{{item?.billStatusLabel}}</span>
|
|
</ng-template> -->
|
|
<ng-template st-row="loadingPicture" let-item let-index="index">
|
|
<div class="imgBox">
|
|
<div *ngIf="item.loadingPicture">
|
|
<app-imagelist style="width: 60px" [imgList]="[item.loadingPicture]"> </app-imagelist>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
<ng-template st-row="unloadPicture" let-item let-index="index">
|
|
<div class="imgBox">
|
|
<div *ngIf="item.unloadPicture">
|
|
<app-imagelist style="width: 40px" [imgList]="[item.unloadPicture]"> </app-imagelist>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
<ng-template st-row="loadingLadingBill" let-item let-index="index">
|
|
<div class="imgBox">
|
|
<div *ngIf="item.loadingLadingBill">
|
|
<app-imagelist style="width: 40px" [imgList]="[item.loadingLadingBill]"> </app-imagelist>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
<ng-template st-row="signatureForm" let-item let-index="index">
|
|
<div class="imgBox">
|
|
<div *ngIf="item.signatureForm">
|
|
<app-imagelist style="width: 40px" [imgList]="[item.signatureForm]"> </app-imagelist>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
<ng-template st-row="orderAmount" let-item let-index="index">
|
|
<div class="text-right">{{item?.orderAmount | currency }}</div>
|
|
</ng-template>
|
|
</st>
|
|
</nz-card>
|
|
<ng-template #extraTemplate>
|
|
<div class="d-flex align-items-center">
|
|
<div class="mr-md">
|
|
已选择
|
|
<strong class="text-red">{{ selectedRows.length }}</strong> 条数据
|
|
</div>
|
|
<button *ngIf="selectedIndex === '0' || selectedIndex === '2'" nz-button nzType="primary" (click)="upload()">上传</button>
|
|
<button *ngIf="selectedIndex === '1' || selectedIndex === '3'" nz-button nzType="primary" (click)="recall()">撤回</button>
|
|
</div>
|
|
</ng-template>
|