This commit is contained in:
Taric Xin
2022-01-05 21:02:28 +08:00
parent e4c007f0d5
commit fb87845bde
29 changed files with 574 additions and 1717 deletions

View File

@ -9,19 +9,18 @@
<app-requested-detail [id]="id"></app-requested-detail>
<st #st [data]="service.$api_get_invoice_requested_order_detail" [columns]="columns"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }}"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
[loading]="service.http.loading" [scroll]="{ x:'1200px',y: '200px' }" (change)="stChange($event)" >
<ng-template st-row="billHCode" let-item let-index="index" let-column="column">
<a class="text-primary" > {{ item.billHCode }}</a>
</ng-template>
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }}"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
[loading]="service.http.loading" [scroll]="{ x:'1200px',y: '200px' }" (change)="stChange($event)">
<ng-template st-row="billHCode" let-item let-index="index" let-column="column">
<a class="text-primary"> {{ item.billHCode }}</a>
</ng-template>
</st>
<div class="modal-footer text-center">
<button nz-button type="button" >移除</button>
<button nz-button type="button">移除</button>
<button nz-button type="button" (click)="saveManage()">手工处理</button>
<button nz-button type="submit" nzType="primary"
[nzLoading]="service.http.loading" (click)="saveManage()">自动开票</button>
</div>
<button nz-button type="submit" nzType="primary" [nzLoading]="service.http.loading"
(click)="saveManage()">自动开票</button>
</div>