This commit is contained in:
潘晓云
2022-03-11 16:24:17 +08:00
parent d5f9c14c3a
commit 63ab601233
4 changed files with 21 additions and 2 deletions

View File

@ -1,4 +1,10 @@
<page-header-wrapper [title]="'合伙人账户明细'"></page-header-wrapper> <page-header-wrapper [title]="'合伙人账户明细'" [logo]="logo">
<ng-template #logo>
<button nz-button (click)="goBack()">
<i nz-icon nzType="left" nzTheme="outline"></i>
</button>
</ng-template>
</page-header-wrapper>
<nz-card> <nz-card>
<sv-container layout="vertical" [noColon]="true" col="4"> <sv-container layout="vertical" [noColon]="true" col="4">
<sv [label]="labelTpl"> <sv [label]="labelTpl">

View File

@ -150,4 +150,8 @@ export class PartnerAccountManagementAccountDetailComponent implements OnInit {
this.st.load(1); this.st.load(1);
} }
export() { } export() { }
goBack() {
window.history.go(-1);
}
} }

View File

@ -1,4 +1,10 @@
<page-header-wrapper [title]="'待入账明细'"></page-header-wrapper> <page-header-wrapper [title]="'待入账明细'" [logo]="logo">
<ng-template #logo>
<button nz-button (click)="goBack()">
<i nz-icon nzType="left" nzTheme="outline"></i>
</button>
</ng-template>
</page-header-wrapper>
<nz-card> <nz-card>
<sv-container layout="vertical" [noColon]="true" col="4"> <sv-container layout="vertical" [noColon]="true" col="4">
<sv [label]="labelTpl"> <sv [label]="labelTpl">

View File

@ -142,5 +142,8 @@ export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
handleCancel() { handleCancel() {
this.showBillDetail = false; this.showBillDetail = false;
} }
goBack() {
window.history.go(-1);
}
} }