This commit is contained in:
이담 정 2022-08-14 12:51:23 +00:00
parent a1c0deeb8f
commit db4d900af4
2 changed files with 8 additions and 1 deletions

View File

@ -108,7 +108,7 @@
<div <div
class="casino-money-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="casino-money-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div>요율</div> <div [matTooltip]="__getRateTooltop()">요율</div>
<div> <div>
{{ casinoMoney.highRank }} {{ casinoMoney.highRank }}
</div> </div>

View File

@ -208,4 +208,11 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
__trackByFn(index: number, item: any): any { __trackByFn(index: number, item: any): any {
return item.id || index; return item.id || index;
} }
__getRateTooltop(): string {
const tempRate = 0;
const resultTooltip = `
\n -바카라: ${tempRate}% \n -룰렛: ${tempRate}% \n -드레곤타이거: ${tempRate}% \n -그외:${tempRate}% \n 슬롯:${tempRate}% \n 카지노루징: ${tempRate}% \n 슬롯루징: ${tempRate}%
`;
return resultTooltip;
}
} }