bug fixed

This commit is contained in:
Park Byung Eun 2022-08-10 13:08:31 +00:00
parent 4f0829e692
commit e0ff5847ff

View File

@ -150,13 +150,15 @@
<div class="flex flex-auto overflow-hidden"> <div class="flex flex-auto overflow-hidden">
<!-- Products list --> <!-- Products list -->
<div <div
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto" class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto overflow-x-auto overflow-y-hidden"
> >
<ng-container *ngIf="users$ | async as users"> <ng-container *ngIf="users$ | async as users">
<ng-container *ngIf="users.length > 0; else noUser"> <ng-container *ngIf="users.length > 0; else noUser">
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
matSort
matSortDisableClear
class="user-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="user-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div> <div>
@ -166,7 +168,8 @@
<div>요율</div> <div>요율</div>
<div>상부</div> <div>상부</div>
<div> <div>
아이디 <div>아이디</div>
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
닉네임 닉네임
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
@ -192,7 +195,9 @@
</div> </div>
<!-- Rows --> <!-- Rows -->
<ng-container *ngIf="users$ | async as users"> <ng-container *ngIf="users$ | async as users">
<ng-container *ngFor="let user of users; trackBy: __trackByFn"> <ng-container
*ngFor="let user of users; let i = index; trackBy: __trackByFn"
>
<div <div
class="user-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="user-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
@ -272,6 +277,59 @@
</div> </div>
</ng-container> </ng-container>
</ng-container> </ng-container>
<div>
<!-- <div>
</div> -->
<!-- <div
class="flex flex-col sm:flex-row sm:items-center justify-between mt-4 sm:mt-6"
>
</div> -->
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
정상
</button>
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
대기
</button>
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
탈퇴
</button>
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
휴면
</button>
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
블랙
</button>
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
정지
</button>
</div>
</div> </div>
<mat-paginator <mat-paginator
@ -294,35 +352,5 @@
</div> </div>
</ng-template> </ng-template>
</div> </div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
정상
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
대기
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
탈퇴
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
휴면
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
블랙
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
정지
</button>
</div>
</div> </div>
</div> </div>