79 lines
3.9 KiB
HTML
79 lines
3.9 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]="service.http.loading"
|
||
(click)="search()" acl [acl-ability]="['TAX-DECLARE-search']">查询</button>
|
||
<button nz-button (click)="resetSF()">重置</button>
|
||
<button nz-button (click)="resetSF()" acl [acl-ability]="['TAX-DECLARE-export']">导出</button>
|
||
<button nz-button nzType="link" (click)="expandToggle()">
|
||
{{ !_$expand ? '展开' : '收起' }}
|
||
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</nz-card> -->
|
||
|
||
<nz-card class="table-box">
|
||
<div class="tab_header">
|
||
<label class="page_title"> <label class="driver">|</label> 税务申报</label>
|
||
<nz-tabset [nzTabBarExtraContent]="extraTemplate">
|
||
<nz-tab *ngFor="let tab of tabs" [nzTitle]="tab.name" (nzSelect)="selectChange(tab)"> </nz-tab>
|
||
</nz-tabset>
|
||
</div>
|
||
|
||
<!-- 数据列表 -->
|
||
<st #st [scroll]="{ x: '1200px', y: scrollY }" [data]="service.$api_get_taxDeclaration" [columns]="columns"
|
||
[req]="{ params: reqParams }" [page]="{}" [loading]="false" (change)="changeST($event)">
|
||
<ng-template st-row="orderStatus" let-item let-index="index">
|
||
<a (click)="viewAuditResult(item)" *ngIf="item?.billStatus === '2'">{{ item?.billStatusLabel }}</a>
|
||
<span *ngIf="item?.billStatus !== '2'">{{ item?.billStatusLabel }}</span>
|
||
<span style="color: red" (click)="unnormal(item)">异常</span>
|
||
</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="amount" let-item let-index="index">
|
||
<div class="text-right">{{ item?.amount | 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 nz-button nzDanger [nzLoading]="service.http.loading" acl [acl-ability]="['TAX-DECLARE-search']"
|
||
(click)="openDrawer()">筛选</button>
|
||
<button nz-button nzDanger (click)="exprot()" acl [acl-ability]="['TAX-DECLARE-export']"> 导出</button>
|
||
<button nz-button nz-dropdown [nzDropdownMenu]="menu" nzPlacement="bottomLeft">
|
||
更多<i nz-icon nzType="down" nzTheme="outline"></i></button>
|
||
<nz-dropdown-menu #menu="nzDropdownMenu">
|
||
<ul nz-menu>
|
||
<li nz-menu-item (click)="upload()" acl [acl-ability]="['TAX-DECLARE-declare']"> 申报 </li>
|
||
<li nz-menu-item (click)="recall()" acl [acl-ability]="['TAX-DECLARE-change']"> 更正 </li>
|
||
<li nz-menu-item (click)="uploadSetting()" acl [acl-ability]="['TAX-DECLARE-threshold']"> 修改起征点 </li>
|
||
<li nz-menu-item (click)="resetData()" acl [acl-ability]="['TAX-DECLARE-resetData']"> 更新数据 </li>
|
||
</ul>
|
||
</nz-dropdown-menu>
|
||
</div>
|
||
</ng-template>
|
||
|
||
<nz-modal [(nzVisible)]="isVisible" [nzWidth]="600" [nzFooter]="nzModalFooterEvaluate" (nzOnOk)="handleOK()"
|
||
(nzOnCancel)="handleCancel()">
|
||
<ng-container *nzModalContent>
|
||
<div> 司机姓名:张三/13812345678 </div>
|
||
<div> 是否确认要将该司机的起征点同步调整为超过15万? </div>
|
||
</ng-container>
|
||
<ng-template #nzModalFooterEvaluate>
|
||
<button nz-button nzType="default" (click)="handleCancel()">取消</button>
|
||
<button nz-button nzType="primary" (click)="handleOK()">确定</button>
|
||
</ng-template>
|
||
</nz-modal>
|