From af60a4a1fdfa718f5511d0cda87bc8a8652832f3 Mon Sep 17 00:00:00 2001 From: Park Byung Eun Date: Wed, 6 Jul 2022 10:02:34 +0000 Subject: [PATCH] grid added --- .../user/components/view.component.html | 316 +++++++++++++++++- .../member/user/components/view.component.ts | 18 + .../modules/admin/member/user/user.module.ts | 8 +- 3 files changed, 334 insertions(+), 8 deletions(-) diff --git a/src/app/modules/admin/member/user/components/view.component.html b/src/app/modules/admin/member/user/components/view.component.html index 43b16c7..3fa132d 100644 --- a/src/app/modules/admin/member/user/components/view.component.html +++ b/src/app/modules/admin/member/user/components/view.component.html @@ -22,15 +22,317 @@
- ddddd - - -
+ 카테고리: +

on00

+

on01

+

on02

+

on03

- There are no user! + 사이트명: +

test.com

+ 총입금: + 최근30일 배팅금액: +
+
+ - +
+ + + + 아이디 + + + + + + 비밀번호 + + + + 환전비밀번호 + + + + + + 닉네임 + + + + + + 레벨 + + + LV1 + LV2 + LV3 + + + + + + 상태 + + + 정상 + 대기 + 탈퇴 + 삭제 + 휴면 + 블랙 + + + + + + 은행명 + + 국민은행 + 광주은행 + 경남은행 + 기업은행 + 농협 + 대구은행 + 도이치은행 + 부산은행 + 새마을금고 + 수협 + 신한은행 + 외환은행 + 우리은행 + 우체국 + 전북은행 + 제주은행 + 하나은행 + 한국씨티은행 + HSBC은행 + SC제일은행 + 신협 + 카카오뱅크 + K뱅크 + 산림조합 + 산업은행 + + + + 사이트 변경 + + test.com + kgon.com + nava.com + + + + + + + 카지노 배팅 + + + + 첫충콤프 + + + + 슬롯배팅 + + + + 매충콤프 + + + + + 파워볼배팅 + + + + + 등급 + + + + 오늘콤프 + + + + 핸드폰 + + + + 계좌번호 + + + + 추천횟수 + + + + 슬롯배팅 + + + + 매충콤프 + + + + 정산종류 + + + + 금일 입금/출금액 + + + + 보유머니 + + + + 콤프 + + + + 쿠폰 + + + + 예금주 + + + + 하부파트너전체 + 직속파트너만 + 사용안함 + + + + + + 추천인 + + + + + + 환전금지 + + + + + + 바카라 + + + + + + 룰렛 + + + + + + 드래곤타이거 + + + + + + 기타게임 + + + + + + 슬롯게임요율 + + + + + + 룰렛 + + + + + + 카지노 루징요율 + + + + + + 슬롯게임 루징요율 + + + + + + 환전금지 + + + + 아니오 + + + + + + 메모 + + + + + + 게임중머니 + + + + +
+
+
diff --git a/src/app/modules/admin/member/user/components/view.component.ts b/src/app/modules/admin/member/user/components/view.component.ts index 483958e..649024f 100644 --- a/src/app/modules/admin/member/user/components/view.component.ts +++ b/src/app/modules/admin/member/user/components/view.component.ts @@ -33,6 +33,13 @@ import { User } from '../models/user'; import { UserPagination } from '../models/user-pagination'; import { UserService } from '../services/user.service'; +export interface Tile { + color: string; + cols: number; + rows: number; + text: string; +} + @Component({ selector: 'user-view', templateUrl: './view.component.html', @@ -61,6 +68,17 @@ import { UserService } from '../services/user.service'; animations: fuseAnimations, }) export class ViewComponent implements OnInit, AfterViewInit, OnDestroy { + tiles: Tile[] = [ + { text: 'One', cols: 1, rows: 1, color: 'lightblue' }, + { text: 'Two', cols: 1, rows: 1, color: 'lightgreen' }, + { text: 'Three', cols: 1, rows: 1, color: 'lightpink' }, + { text: 'Four', cols: 1, rows: 1, color: '#DDBDF1' }, + { text: 'five', cols: 1, rows: 1, color: 'lightblue' }, + { text: 'six', cols: 1, rows: 1, color: 'lightgreen' }, + { text: 'seven', cols: 1, rows: 1, color: 'lightpink' }, + { text: 'eight', cols: 1, rows: 1, color: '#DDBDF1' }, + ]; + @ViewChild(MatPaginator) private _paginator!: MatPaginator; @ViewChild(MatSort) private _sort!: MatSort; diff --git a/src/app/modules/admin/member/user/user.module.ts b/src/app/modules/admin/member/user/user.module.ts index ca60b7d..6835a1a 100644 --- a/src/app/modules/admin/member/user/user.module.ts +++ b/src/app/modules/admin/member/user/user.module.ts @@ -11,6 +11,9 @@ import { MatRippleModule } from '@angular/material/core'; import { MatSortModule } from '@angular/material/sort'; import { MatSelectModule } from '@angular/material/select'; import { MatTooltipModule } from '@angular/material/tooltip'; +import { MatGridListModule } from '@angular/material/grid-list'; +import { MatSlideToggleModule } from '@angular/material/slide-toggle'; +import { MatRadioModule } from '@angular/material/radio'; import { TranslocoModule } from '@ngneat/transloco'; @@ -36,7 +39,10 @@ import { userRoutes } from 'app/modules/admin/member/user/user.routing'; MatRippleModule, MatSortModule, MatSelectModule, - MatTooltipModule + MatTooltipModule, + MatGridListModule, + MatSlideToggleModule, + MatRadioModule, ], }) export class UserModule {}