37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<!--
|
|
* @Description :
|
|
* @Version : 1.0
|
|
* @Author : Shiming
|
|
* @Date : 2022-01-18 15:57:44
|
|
* @LastEditors : Shiming
|
|
* @LastEditTime : 2022-01-26 09:35:59
|
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\ticket-management\\components\\invoice-requested\\requested-invoice-modal\\requested-invoice-modal.component.html
|
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
|
-->
|
|
|
|
<app-requested-detail [id]="id"></app-requested-detail>
|
|
|
|
<st
|
|
#st1
|
|
[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]="false"
|
|
[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]="false" (click)="saveManage()">自动开票</button> -->
|
|
</div>
|