리스트 디테일 수정
This commit is contained in:
parent
5b0d7641e5
commit
fc876fc5e1
|
@ -16,7 +16,9 @@ export const webCalculates = [
|
||||||
webWithdrawId: 'aa100',
|
webWithdrawId: 'aa100',
|
||||||
webWithdrawNickname: 'aa100',
|
webWithdrawNickname: 'aa100',
|
||||||
webWithdrawRank: '회원',
|
webWithdrawRank: '회원',
|
||||||
accountHolder: '광주은행 예금주22 565656565656',
|
nameOfBank: '광주은행',
|
||||||
|
accountHolder: '예금주',
|
||||||
|
accountNumber: '2222229999-222',
|
||||||
webWithdrawAmountOfPayment: 5000000,
|
webWithdrawAmountOfPayment: 5000000,
|
||||||
webWithdrawRegistrationDate: '2022-06-08 18:31',
|
webWithdrawRegistrationDate: '2022-06-08 18:31',
|
||||||
webWithdrawConfirmDate: '2022-06-12 20:13',
|
webWithdrawConfirmDate: '2022-06-12 20:13',
|
||||||
|
|
|
@ -7,7 +7,9 @@ export const partnerRecommendations = [
|
||||||
nickname: '가가가',
|
nickname: '가가가',
|
||||||
rank: '매장',
|
rank: '매장',
|
||||||
highRank: 'on03',
|
highRank: 'on03',
|
||||||
accountHolder: '국민은행4444444',
|
accountHolder: '홍길동',
|
||||||
|
nameOfBank: '국민은행',
|
||||||
|
accountNumber: '1212121-2121212',
|
||||||
holdingMoney: 0,
|
holdingMoney: 0,
|
||||||
ownComp: 1649,
|
ownComp: 1649,
|
||||||
state: '정상',
|
state: '정상',
|
||||||
|
|
|
@ -120,13 +120,13 @@
|
||||||
아이디
|
아이디
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
상태
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
등급
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
레벨
|
레벨
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
상태
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">예금주</div>
|
<div class="hidden sm:block">예금주</div>
|
||||||
<div>정산종류</div>
|
<div>정산종류</div>
|
||||||
|
@ -160,13 +160,13 @@
|
||||||
{{ deposit.signinId }}
|
{{ deposit.signinId }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ deposit.nickname }}
|
{{ deposit.nickname }}
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
{{ deposit.state }}
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ deposit.rank }}
|
{{ deposit.rank }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
LV{{ deposit.level }}
|
LV{{ deposit.level }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ deposit.state }}
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ deposit.accountHolder }}
|
{{ deposit.accountHolder }}
|
||||||
|
@ -254,7 +254,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no deposit!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -185,7 +185,11 @@
|
||||||
</div>
|
</div>
|
||||||
<div>{{ webCalculate.webWithdrawRank }}</div>
|
<div>{{ webCalculate.webWithdrawRank }}</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
|
{{ webCalculate.nameOfBank }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
{{ webCalculate.accountHolder }}
|
{{ webCalculate.accountHolder }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ webCalculate.accountNumber }}
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
{{ webCalculate.webWithdrawAmountOfPayment }}원
|
{{ webCalculate.webWithdrawAmountOfPayment }}원
|
||||||
|
|
|
@ -14,6 +14,8 @@ export interface WebCalculate {
|
||||||
webWithdrawNickname?: string; // 웹출금 닉네임
|
webWithdrawNickname?: string; // 웹출금 닉네임
|
||||||
webWithdrawRank?: string; // 웹출금 등급
|
webWithdrawRank?: string; // 웹출금 등급
|
||||||
accountHolder?: string;
|
accountHolder?: string;
|
||||||
|
nameOfBank?: string;
|
||||||
|
accountNumber?: string;
|
||||||
webWithdrawAmountOfPayment?: number; // 웹출금 결제금액
|
webWithdrawAmountOfPayment?: number; // 웹출금 결제금액
|
||||||
webWithdrawRegistrationDate?: Date; // 웹출금 신청일
|
webWithdrawRegistrationDate?: Date; // 웹출금 신청일
|
||||||
webWithdrawConfirmDate?: Date; // 웹출금 확인일
|
webWithdrawConfirmDate?: Date; // 웹출금 확인일
|
||||||
|
|
|
@ -125,13 +125,13 @@
|
||||||
아이디
|
아이디
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
상태
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
등급
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
레벨
|
레벨
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
상태
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">예금주</div>
|
<div class="hidden sm:block">예금주</div>
|
||||||
<div>정산종류</div>
|
<div>정산종류</div>
|
||||||
|
@ -163,13 +163,13 @@
|
||||||
{{ withdraw.signinId }}
|
{{ withdraw.signinId }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ withdraw.nickname }}
|
{{ withdraw.nickname }}
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
{{ withdraw.state }}
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ withdraw.rank }}
|
{{ withdraw.rank }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
LV{{ withdraw.level }}
|
LV{{ withdraw.level }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ withdraw.state }}
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ withdraw.accountHolder }}
|
{{ withdraw.accountHolder }}
|
||||||
|
@ -237,7 +237,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no withdraw!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -235,7 +235,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no Data!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -82,19 +82,15 @@
|
||||||
아이디
|
아이디
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
<!-- <hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
상태 -->
|
연락처
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
등급
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
레벨
|
레벨
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">예금주</div>
|
||||||
예금주
|
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
연락처
|
|
||||||
</div>
|
|
||||||
<div class="hidden md:block">보유금</div>
|
<div class="hidden md:block">보유금</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
게임중머니
|
게임중머니
|
||||||
|
@ -120,6 +116,8 @@
|
||||||
{{ casinoMoney.signinId }}
|
{{ casinoMoney.signinId }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ casinoMoney.nickname }}
|
{{ casinoMoney.nickname }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ casinoMoney.phoneNumber }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ casinoMoney.rank }}
|
{{ casinoMoney.rank }}
|
||||||
|
@ -128,13 +126,11 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ casinoMoney.accountHolder }}
|
{{ casinoMoney.accountHolder }}
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
{{ casinoMoney.phoneNumber }}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
캐쉬{{ casinoMoney.ownCash }}
|
캐쉬{{ casinoMoney.ownCash }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
콤프{{ casinoMoney.ownComp }}
|
콤프{{ casinoMoney.ownComp }}P
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
쿠폰{{ casinoMoney.ownCoupon }}
|
쿠폰{{ casinoMoney.ownCoupon }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -188,7 +184,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no casino money data!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -134,7 +134,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no coupon log!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -159,7 +159,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no coupon money log!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -184,7 +184,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no coupon!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -35,14 +35,13 @@
|
||||||
아이디
|
아이디
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
현재위치
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
등급
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
레벨
|
레벨
|
||||||
</div>
|
</div>
|
||||||
|
<div>현재위치</div>
|
||||||
<div class="hidden md:block">보유금</div>
|
<div class="hidden md:block">보유금</div>
|
||||||
<div class="hidden md:block">게임중머니</div>
|
<div class="hidden md:block">게임중머니</div>
|
||||||
<div class="hidden md:block">사이트</div>
|
<div class="hidden md:block">사이트</div>
|
||||||
|
@ -74,6 +73,7 @@
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ currentUser.level }}
|
{{ currentUser.level }}
|
||||||
</div>
|
</div>
|
||||||
|
<div>{{ currentUser.currentLocation }}</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
{{ currentUser.ownCash }}
|
{{ currentUser.ownCash }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
|
@ -133,47 +133,47 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no current user!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<!-- Budget details -->
|
||||||
<!-- Budget details -->
|
<div>
|
||||||
<div>
|
<div
|
||||||
<div
|
class="sm:col-span-6 flex flex-col flex-auto p-6 bg-card shadow rounded-2xl overflow-hidden"
|
||||||
class="sm:col-span-6 flex flex-col flex-auto p-6 bg-card shadow rounded-2xl overflow-hidden"
|
>
|
||||||
>
|
<div class="text-lg font-medium tracking-tight leading-6 truncate">
|
||||||
<div class="text-lg font-medium tracking-tight leading-6 truncate">
|
현재 접속자 & 전체회원 쪽지보내기
|
||||||
현재 접속자 & 전체회원 쪽지보내기
|
</div>
|
||||||
</div>
|
<div class="flex flex-col flex-auto">
|
||||||
<div class="flex flex-col flex-auto">
|
<mat-card>
|
||||||
<mat-card>
|
<mat-card-content>
|
||||||
<mat-card-content>
|
<div class="flex">
|
||||||
<div class="flex">
|
<mat-form-field class="w-1/3 pr-2">
|
||||||
<mat-form-field class="w-1/3 pr-2">
|
<mat-label>제목</mat-label>
|
||||||
<mat-label>제목</mat-label>
|
<input matInput />
|
||||||
<input matInput />
|
</mat-form-field>
|
||||||
</mat-form-field>
|
</div>
|
||||||
</div>
|
<div class="flex">
|
||||||
<div class="flex">
|
<mat-form-field class="w-1/3 pr-2">
|
||||||
<mat-form-field class="w-1/3 pr-2">
|
<mat-label>글쓴이</mat-label>
|
||||||
<mat-label>글쓴이</mat-label>
|
<input matInput placeholder="관리자" />
|
||||||
<input matInput placeholder="관리자" />
|
</mat-form-field>
|
||||||
</mat-form-field>
|
</div>
|
||||||
</div>
|
<div class="flex">
|
||||||
<div class="flex">
|
<mat-form-field class="w-1/3 pr-2">
|
||||||
<mat-form-field class="w-1/3 pr-2">
|
<mat-label>내용</mat-label>
|
||||||
<mat-label>내용</mat-label>
|
<input matInput />
|
||||||
<input matInput />
|
</mat-form-field>
|
||||||
</mat-form-field>
|
</div>
|
||||||
</div>
|
<div class="flex">
|
||||||
<div class="flex">
|
<mat-form-field class="w-1/3 pr-2">
|
||||||
<mat-form-field class="w-1/3 pr-2">
|
<input matInput />
|
||||||
<input matInput />
|
</mat-form-field>
|
||||||
</mat-form-field>
|
</div>
|
||||||
</div>
|
</mat-card-content>
|
||||||
</mat-card-content>
|
</mat-card>
|
||||||
</mat-card>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -129,7 +129,13 @@
|
||||||
<div>
|
<div>
|
||||||
{{ partnerRecommendation.rank }}
|
{{ partnerRecommendation.rank }}
|
||||||
</div>
|
</div>
|
||||||
<div>{{ partnerRecommendation.accountHolder }}</div>
|
<div>
|
||||||
|
{{ partnerRecommendation.nameOfBank }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ partnerRecommendation.accountHolder }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ partnerRecommendation.accountNumber }}
|
||||||
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ partnerRecommendation.holdingMoney }}
|
{{ partnerRecommendation.holdingMoney }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
|
@ -241,10 +247,12 @@
|
||||||
아이디
|
아이디
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
상태
|
상태
|
||||||
</div>
|
</div>
|
||||||
<div>등급</div>
|
|
||||||
<div class="hidden md:block">사용여부</div>
|
<div class="hidden md:block">사용여부</div>
|
||||||
<div class="hidden sm:block">회원수</div>
|
<div class="hidden sm:block">회원수</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -269,11 +277,11 @@
|
||||||
{{ partnerRecommendation.signinId }}
|
{{ partnerRecommendation.signinId }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ partnerRecommendation.nickname }}
|
{{ partnerRecommendation.nickname }}
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
{{ partnerRecommendation.state }}
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ partnerRecommendation.rank }}
|
{{ partnerRecommendation.rank }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ partnerRecommendation.state }}
|
||||||
</div>
|
</div>
|
||||||
<div>{{ partnerRecommendation.useOrNot }}</div>
|
<div>{{ partnerRecommendation.useOrNot }}</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
|
|
|
@ -7,6 +7,8 @@ export interface PartnerRecommendation {
|
||||||
rank?: string;
|
rank?: string;
|
||||||
highRank?: string;
|
highRank?: string;
|
||||||
accountHolder?: string;
|
accountHolder?: string;
|
||||||
|
nameOfBank?: string;
|
||||||
|
accountNumber?: string;
|
||||||
holdingMoney?: number;
|
holdingMoney?: number;
|
||||||
ownComp?: number;
|
ownComp?: number;
|
||||||
state?: string;
|
state?: string;
|
||||||
|
|
|
@ -45,18 +45,16 @@
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
상태
|
연락처
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
등급
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
레벨
|
레벨
|
||||||
</div>
|
|
||||||
<div class="hidden sm:block">
|
|
||||||
예금주
|
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
연락처
|
상태
|
||||||
</div>
|
</div>
|
||||||
|
<div class="hidden sm:block">예금주</div>
|
||||||
<div class="hidden md:block">정산종류</div>
|
<div class="hidden md:block">정산종류</div>
|
||||||
<div class="hidden md:block">보유금</div>
|
<div class="hidden md:block">보유금</div>
|
||||||
<div class="hidden lg:block">충전금</div>
|
<div class="hidden lg:block">충전금</div>
|
||||||
|
@ -85,17 +83,17 @@
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ partner.nickname }}
|
{{ partner.nickname }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ partner.state }}
|
{{ partner.phoneNumber }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ partner.rank }}
|
{{ partner.rank }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
LV{{ partner.level }}
|
LV{{ partner.level }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ partner.state }}
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ partner.accountHolder }}
|
{{ partner.accountHolder }}
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
{{ partner.phoneNumber }}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
{{ partner.calculateType }}
|
{{ partner.calculateType }}
|
||||||
|
@ -156,7 +154,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no partner!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -163,18 +163,16 @@
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
상태
|
연락처
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
등급
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
레벨
|
레벨
|
||||||
</div>
|
|
||||||
<div class="hidden sm:block">
|
|
||||||
예금주
|
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
연락처
|
상태
|
||||||
</div>
|
</div>
|
||||||
|
<div class="hidden sm:block">예금주</div>
|
||||||
<div class="hidden md:block">정산종류</div>
|
<div class="hidden md:block">정산종류</div>
|
||||||
<div class="hidden md:block">보유금</div>
|
<div class="hidden md:block">보유금</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
|
@ -211,17 +209,17 @@
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ unconnected.nickname }}
|
{{ unconnected.nickname }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ unconnected.state }}
|
{{ unconnected.phoneNumber }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ unconnected.rank }}
|
{{ unconnected.rank }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
LV{{ unconnected.level }}
|
LV{{ unconnected.level }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ unconnected.state }}
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ unconnected.accountHolder }}
|
{{ unconnected.accountHolder }}
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
{{ unconnected.phoneNumber }}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
{{ unconnected.calculateType }}
|
{{ unconnected.calculateType }}
|
||||||
|
@ -274,7 +272,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no unconnected user!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -170,18 +170,16 @@
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
닉네임
|
닉네임
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
상태
|
연락처
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
등급
|
등급
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
레벨
|
레벨
|
||||||
</div>
|
|
||||||
<div class="hidden sm:block">
|
|
||||||
예금주
|
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
연락처
|
상태
|
||||||
</div>
|
</div>
|
||||||
|
<div class="hidden sm:block">예금주</div>
|
||||||
<div class="hidden md:block">보유금</div>
|
<div class="hidden md:block">보유금</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
게임중머니
|
게임중머니
|
||||||
|
@ -213,22 +211,22 @@
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ user.nickname }}
|
{{ user.nickname }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ user.state }}
|
{{ user.phoneNumber }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ user.rank }}
|
{{ user.rank }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ user.level }}
|
LV{{ user.level }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ user.state }}
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ user.accountHolder }}
|
{{ user.accountHolder }}
|
||||||
<hr style="margin: 7px 0px" />
|
|
||||||
{{ user.phoneNumber }}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
캐쉬{{ user.ownCash }}
|
캐쉬{{ user.ownCash }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
콤프{{ user.ownComp }}
|
콤프{{ user.ownComp }}P
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
쿠폰{{ user.ownCoupon }}
|
쿠폰{{ user.ownCoupon }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -290,7 +288,7 @@
|
||||||
<div
|
<div
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
>
|
>
|
||||||
There are no user!
|
There are no data!
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user