diff --git a/src/app/mock-api/apps/member/current-user/data.ts b/src/app/mock-api/apps/member/current-user/data.ts index ca0d8d0..1bcc183 100644 --- a/src/app/mock-api/apps/member/current-user/data.ts +++ b/src/app/mock-api/apps/member/current-user/data.ts @@ -14,5 +14,8 @@ export const currentUsers = [ ownComp: 3111, rank: '회원', siteAddress: 'web4nova114.com', + writer: '관리자', + content: + '--선택--\n5008\n**입금계좌문의시(가상계좌1)**\n**출금비밀번호문의시**\n----탈퇴,졸업관련----\n**졸업안내\n----입금관련문의----\n>>타인명의입금시\n----환전관련문의----\n**환전지연안내(환전량 증가)\n**은행점검(뱅킹장애)등으로 충환전지연안내\n서버점검안내\n서버점검완료안내', }, ]; diff --git a/src/app/modules/admin/member/current-user/components/list.component.html b/src/app/modules/admin/member/current-user/components/list.component.html index 2b25670..b761735 100644 --- a/src/app/modules/admin/member/current-user/components/list.component.html +++ b/src/app/modules/admin/member/current-user/components/list.component.html @@ -1,176 +1,304 @@ -
- -
- -
- -
- -
- 현재접속자&쪽지전송 -
-
- -
- -
- - -
- -
-
번호
-
상부
-
- 아이디 -
- 닉네임 -
-
- 등급 -
- 레벨 -
-
현재위치
- - - - - - -
- - - -
-
{{ currentUser.index }}
-
{{ currentUser.highRank }}
-
-
- {{ currentUser.signinId }} -
-
- {{ currentUser.nickname }} -
- {{ currentUser.currentLocation }} -
-
- {{ currentUser.rank }} -
- {{ currentUser.level }} -
-
{{ currentUser.currentLocation }}
- - - - - - -
-
-
-
- - -
-
- - +
+
+
+
- There are no data! -
- -
- -
-
-
- 현재 접속자 & 전체회원 쪽지보내기 -
-
- - -
- - 제목 - - + +
+ +
+ +
+ +
+ 현재접속자&쪽지전송 +
+ +
+ +
+ + +
+ +
+
번호
+
상부
+
+ 아이디 +
+ 닉네임 +
+
+ 등급 +
+ 레벨 +
+
현재위치
+ + + + + + +
+ + + +
+
{{ currentUser.index }}
+
{{ currentUser.highRank }}
+
+
+ {{ currentUser.signinId }} +
+
+ {{ currentUser.nickname }} +
+ {{ currentUser.currentLocation }} +
+
+ {{ currentUser.rank }} +
+ {{ currentUser.level }} +
+
{{ currentUser.currentLocation }}
+ + + + + + +
+
+
+
+ + +
+
+ + +
+ There are no data! +
+
-
- - 글쓴이 - - +
+
+
+
+
+ 현재 접속자 & 전체회원 쪽지보내기
-
- - 내용 - - +
+
+ + +
+ 구분 + + + 전체 + + + 현재접속자 + + + 본사 + + + 대본 + + + 부본 + + + 총판 + + + 매장 + + + 회원 + + +
+
+ 대본아이디 + + + 대본하부회원 + + + + + 선택 + kgon2 + bbc100 + test00 + qwer11 + zxcv123 + on01 + + +
+
+ 부본아이디 + + + 부본하부회원 + + + + + 선택 + kgon3 + test33 + aa2315 + test770 + zxcv12 + on02 + + +
+
+ + 제목 + + +
+
+ + 글쓴이 + + +
+ + + 내용 + +
+
+ +
+
+ +
+
+
-
- - - -
- - +
+
diff --git a/src/app/modules/admin/member/current-user/components/list.component.ts b/src/app/modules/admin/member/current-user/components/list.component.ts index be34900..ee3cb66 100644 --- a/src/app/modules/admin/member/current-user/components/list.component.ts +++ b/src/app/modules/admin/member/current-user/components/list.component.ts @@ -77,6 +77,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy { searchInputControl = new FormControl(); selectedCurrentUser?: CurrentUser; pagination?: CurrentUserPagination; + targetForm!: FormGroup; private _unsubscribeAll: Subject = new Subject(); @@ -99,6 +100,10 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy { * On init */ ngOnInit(): void { + this.targetForm = this._formBuilder.group({ + writer: [''], + content: [''], + }); // Get the pagination this._currentUserService.pagination$ .pipe(takeUntil(this._unsubscribeAll)) @@ -111,6 +116,18 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy { }); // Get the products + this._currentUserService.currentUsers$ + .pipe(takeUntil(this._unsubscribeAll)) + .subscribe((curUsers: any[] | undefined) => { + if (!curUsers) { + return; + } + + this.targetForm.patchValue(curUsers[0]); + // Mark for check + this._changeDetectorRef.markForCheck(); + }); + this.currentUsers$ = this._currentUserService.currentUsers$; } diff --git a/src/app/modules/admin/member/current-user/models/current-user.ts b/src/app/modules/admin/member/current-user/models/current-user.ts index be2ab03..8864686 100644 --- a/src/app/modules/admin/member/current-user/models/current-user.ts +++ b/src/app/modules/admin/member/current-user/models/current-user.ts @@ -11,4 +11,6 @@ export interface CurrentUser { ownComp?: number; rank?: string; siteAddress?: string; + writer?: string; + content?: string; }