26 lines
1.4 KiB
HTML
26 lines
1.4 KiB
HTML
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-12-23 16:50:17
|
|
* @LastEditTime: 2021-12-31 13:40:11
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
* @FilePath: \tms-obc-web\src\app\routes\ticket-management\components\invoice-requested\requested-invoice-modal\requested-invoice-modal.component.html
|
|
-->
|
|
<app-requested-detail [id]="id"></app-requested-detail>
|
|
|
|
<st #st [data]="service.$api_get_invoice_requested_order_detail" [columns]="columns" bordered size="small"
|
|
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq}"
|
|
[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)" class="mt-md">
|
|
<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" (click)="saveManage()">手工处理</button>
|
|
<button nz-button type="submit" nzType="primary" [nzLoading]="service.http.loading"
|
|
(click)="saveManage()">自动开票</button>
|
|
</div> |