diff --git a/src/app/routes/datatable/components/invoicetable/invoicetable.component.html b/src/app/routes/datatable/components/invoicetable/invoicetable.component.html index e45122f6..fd37f657 100644 --- a/src/app/routes/datatable/components/invoicetable/invoicetable.component.html +++ b/src/app/routes/datatable/components/invoicetable/invoicetable.component.html @@ -1,32 +1,26 @@ - - - {{item.totalInvoicedAmount | currency}} - - - {{item.invAmountMonth | currency}} - - - {{item.applyWaitInvAmount | currency}} - - - {{item.unInvoicedAmountHistory | currency}} - - - {{item.unInvoicedAmountCurMonth | currency}} - - - {{item.invoicedAmount | currency}} - + + + {{item.totalInvoicedAmount | currency}} + + + {{item.invAmountMonth | currency}} + + + {{item.applyWaitInvAmount | currency}} + + + {{item.unInvoicedAmountHistory | currency}} + + + {{item.unInvoicedAmountCurMonth | currency}} + + + {{item.invoicedAmount | currency}} + - + \ No newline at end of file diff --git a/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts b/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts index 40aac5d4..fc71aab6 100644 --- a/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts +++ b/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts @@ -6,71 +6,98 @@ import { DataService } from '../../services/data.service'; @Component({ selector: 'app-datatable-invoicetable', - templateUrl: './invoicetable.component.html', + templateUrl: './invoicetable.component.html' }) export class DatatableInvoicetableComponent implements OnInit { @ViewChild('st', { static: false }) st!: STComponent; columns!: STColumn[]; - data=[{name1:1111}] - constructor(private http: _HttpClient, private modal: ModalHelper,public service :DataService) { } + data = [{ name1: 1111 }]; + constructor(private http: _HttpClient, private modal: ModalHelper, public service: DataService) {} /** * 查询参数 */ - get reqParams() { - return { }; + get reqParams() { + return {}; } - ngOnInit(): void { + ngOnInit(): void { this.initST(); - } initST() { this.columns = [ { title: '运营主体', - index: 'operationName' + index: 'operationName', + width: 220 }, { title: '已开票总金额', index: 'totalInvoicedAmount', render: 'totalInvoicedAmount', + className: 'text-right', + width: 150 }, { title: '当月已开票金额', index: 'invAmountMonth', render: 'invAmountMonth', + className: 'text-right', + width: 150 }, { title: '当月已开票张数', index: 'numInvAmountMonth', + className: 'text-right', + width: 150 }, { title: '已申请待开金额', index: 'applyWaitInvAmount', render: 'applyWaitInvAmount', + className: 'text-right', + width: 150 }, { title: '申请待开客户', index: 'applyWaitCustomer', + className: 'text-right', + width: 150 }, { title: '已开票金额', index: 'invoicedAmount', render: 'invoicedAmount', + className: 'text-right', + width: 150 }, { title: '未申请开票金额(历史)', index: 'unInvoicedAmountHistory', render: 'unInvoicedAmountHistory', + className: 'text-right', + width: 200 }, { title: '未申请开票金额(当月)', index: 'unInvoicedAmountCurMonth', render: 'unInvoicedAmountCurMonth', + className: 'text-right', + width: 200 }, + { + title: '当月发票张数', + index: 'unInvoicedAmountHistory1', + className: 'text-right', + width: 150 + }, + { + title: '剩余发票张数', + index: 'unInvoicedAmountCurMonth1', + className: 'text-right', + width: 150 + } ]; } - }