관리-배팅리스트

This commit is contained in:
이담 정 2022-08-14 12:28:36 +00:00
parent 919db21162
commit ea3c246c71
2 changed files with 11 additions and 1 deletions

View File

@ -111,7 +111,12 @@
> >
쪽지보내기 쪽지보내기
</button> </button>
<button mat-menu-item>배팅리스트</button> <button
mat-menu-item
(click)="viewSlot(partner.getId())"
>
배팅리스트
</button>
<button <button
mat-menu-item mat-menu-item
(click)="__onClickSignout($event)" (click)="__onClickSignout($event)"

View File

@ -224,6 +224,11 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
let url: string = 'member/user/' + id; let url: string = 'member/user/' + id;
this.router.navigateByUrl(url); this.router.navigateByUrl(url);
} }
viewSlot(id: string): void {
let url: string = 'game/slot';
this.router.navigateByUrl(url);
}
// ----------------------------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------------------------
// @ Private methods // @ Private methods
// ----------------------------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------------------------