+
+ {{ user.accountHolder }}
+
+ {{ user.phoneNumber }}
+
+
+ 캐쉬{{ user.ownCash }}
+
+ 콤프{{ user.ownComp }}
+
+ 쿠폰{{ user.ownCoupon }}
+
+
+ {{ user.gameMoney }}
+
+ {{ user.todayComp }}P
+
+
+ 입금{{ user.totalDeposit }}
+
+ 출금{{ user.totalWithdraw }}
+
+ 차익{{ user.balance }}
+
+
+
-
-
-
- {{ user.todayComp }}P
-
-
-
-
- 입금{{ user.totalDeposit }} 출금{{
- user.totalWithdraw
- }}
- 차익{{ user.balance }}
-
-
-
-
- 가입{{ user.registDate }} 최종{{
- user.finalSigninDate
- }}
+
+ 가입{{ user.registDate }}
+
+ 최종{{ user.finalSigninDate }}
+
IP{{ user.ip }}
-
-
-
- {{ user.state }}
-
+
diff --git a/src/app/modules/admin/member/user/components/list.component.ts b/src/app/modules/admin/member/user/components/list.component.ts
index c36671c..06dd41c 100644
--- a/src/app/modules/admin/member/user/components/list.component.ts
+++ b/src/app/modules/admin/member/user/components/list.component.ts
@@ -41,18 +41,22 @@ import { Router } from '@angular/router';
/* language=SCSS */
`
.inventory-grid {
- grid-template-columns: 60px auto 40px;
+ /* CB 관리 요율 아이디 상위 */
+ grid-template-columns: 20px 40px 40px auto 140px;
@screen sm {
- grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px;
+ /* CB 관리 요율 아이디 상위 예금주 */
+ grid-template-columns: 20px 40px 40px auto 140px 140px 140px 140px;
}
@screen md {
- grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px 60px;
+ /* CB 관리 요율 아이디 상위 예금주 보유금 게임중머니 총입출 */
+ grid-template-columns: 20px 40px 40px auto 140px 140px 140px 140px 140px;
}
@screen lg {
- grid-template-columns: 60px 70px 70px 70px 70px 100px 60px 60px auto 60px 60px 60px 60px;
+ /* CB 관리 요율 아이디 상위 예금주 보유금 게임중머니 총입출 카지노 로그 */
+ grid-template-columns: 20px 40px 40px auto 140px 140px 140px 140px 140px 140px 160px;
}
}
`,
@@ -67,6 +71,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
users$!: Observable
;
+ __isSearchOpened = false;
isLoading = false;
searchInputControl = new FormControl();
selectedUser?: User;
@@ -184,6 +189,14 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
*/
__toggleDetails(productId: string): void {}
+ /**
+ * toggle the search
+ * Used in 'bar'
+ */
+ __onClickSearch(): void {
+ this.__isSearchOpened = !this.__isSearchOpened;
+ }
+
/**
* Track by function for ngFor loops
*
diff --git a/src/styles/styles.scss b/src/styles/styles.scss
index 4103b93..60e4094 100644
--- a/src/styles/styles.scss
+++ b/src/styles/styles.scss
@@ -2,3 +2,7 @@
/* @ Import/write your custom styles here.
/* @ Styles from this file will override 'vendors.scss' and Beteran's base styles.
/* ----------------------------------------------------------------------------------------------------- */
+
+.mat-form-field.bet-mat-form-field-wrapper-mb-0>.mat-form-field-wrapper {
+ margin-bottom: 0em;
+}
\ No newline at end of file