78 lines
3.6 KiB
HTML
78 lines
3.6 KiB
HTML
<!--
|
||
* @Description :
|
||
* @Version : 1.0
|
||
* @Author : Shiming
|
||
* @Date : 2022-03-30 14:00:43
|
||
* @LastEditors : Shiming
|
||
* @LastEditTime : 2022-04-09 14:13:42
|
||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\tax-management\\components\\individual-declare\\individual-declare.component.html
|
||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||
-->
|
||
<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()">查询</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_get_taxDeclaration" [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]="false">
|
||
<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 nzType="primary" (click)="upload()">申报</button>
|
||
<button nz-button nzType="primary" (click)="recall()">更正</button>
|
||
<button nz-button nzType="primary" (click)="uploadSetting()">修改起征点</button>
|
||
<button nz-button nzType="primary" (click)="resetData()">更新数据</button>
|
||
</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> |