쿠폰발행리스트 수정
This commit is contained in:
parent
404c8820ac
commit
193a80847d
|
@ -2,32 +2,20 @@
|
||||||
|
|
||||||
export const coupons = [
|
export const coupons = [
|
||||||
{
|
{
|
||||||
id: 'on00',
|
id: '7eb7c859-1347-4317-96b6-9476a7e2ba3c',
|
||||||
totalPartnerCount: '5',
|
issuedCouponId: 'on04',
|
||||||
totalHoldingMoney: 303675,
|
issuedCouponNickname: 'on04',
|
||||||
totalComp: 108933,
|
receiveCouponId: 'onon6',
|
||||||
total: 412608,
|
receiveCouponNickname: '가가가',
|
||||||
branchCount: 1,
|
couponGroupNumber: '6L03ER50103AZOVS',
|
||||||
divisionCount: 1,
|
couponSerialNumber: '3GWL2T6RQJ4WJLRTQMBIRFEO',
|
||||||
officeCount: 1,
|
issuedCoupons: '1/1',
|
||||||
storeCount: 1,
|
issuedCouponPrice: 50000,
|
||||||
memberCount: 1,
|
couponStartDate: '2022-06-12 00:00',
|
||||||
nickname: 'on00',
|
couponFinishDate: '2022-07-12 23:59',
|
||||||
accountHolder: '11',
|
useOrNot: 'Y',
|
||||||
phoneNumber: '010-1111-1111',
|
issuedCouponDate: '2022-06-12 16:22',
|
||||||
calculateType: '롤링',
|
modifyCouponDate: '2022-06-12 16:22',
|
||||||
ownCash: 50000,
|
useCouponDate: '',
|
||||||
ownComp: 1711,
|
|
||||||
ownCoupon: 50000,
|
|
||||||
gameMoney: 0,
|
|
||||||
todayComp: 0,
|
|
||||||
totalDeposit: 0,
|
|
||||||
totalWithdraw: 0,
|
|
||||||
balance: 0,
|
|
||||||
registDate: '2022-06-12 15:38',
|
|
||||||
finalSigninDate: '',
|
|
||||||
ip: '',
|
|
||||||
state: '정상',
|
|
||||||
note: '',
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -13,343 +13,172 @@
|
||||||
<div class="text-4xl font-extrabold tracking-tight">쿠폰발행리스트</div>
|
<div class="text-4xl font-extrabold tracking-tight">쿠폰발행리스트</div>
|
||||||
<!-- Actions -->
|
<!-- Actions -->
|
||||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||||
<!-- Memo -->
|
|
||||||
<!-- <mat-form-field>
|
|
||||||
<ng-container *ngIf="coupons$ | async as coupons">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let coupon of coupons; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<fieldset>
|
|
||||||
총 파트너수:{{ coupon.totalPartnerCount }} 총 보유머니:{{
|
|
||||||
coupon.totalHoldingMoney
|
|
||||||
}}
|
|
||||||
총 콤프:{{ coupon.totalComp }} 총 합계:{{
|
|
||||||
coupon.total
|
|
||||||
}}
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
</mat-form-field> -->
|
|
||||||
|
|
||||||
<!-- SelectBox -->
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="리스트수">
|
|
||||||
<mat-option value="40">40</mat-option>
|
|
||||||
<mat-option value="60">60</mat-option>
|
|
||||||
<mat-option value="80">80</mat-option>
|
|
||||||
<mat-option value="100">100</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="레벨">
|
|
||||||
<mat-option value="level1">LV.1</mat-option>
|
|
||||||
<mat-option value="level2">LV.2</mat-option>
|
|
||||||
<mat-option value="level3">LV.3</mat-option>
|
|
||||||
<mat-option value="level4">LV.4</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="상태">
|
|
||||||
<mat-option value="">정상</mat-option>
|
|
||||||
<mat-option value="">대기</mat-option>
|
|
||||||
<mat-option value="">탈퇴</mat-option>
|
|
||||||
<mat-option value="">휴면</mat-option>
|
|
||||||
<mat-option value="">블랙</mat-option>
|
|
||||||
<mat-option value="">정지</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="제한">
|
|
||||||
<mat-option value="">카지노제한</mat-option>
|
|
||||||
<mat-option value="">슬롯제한</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="입금">
|
|
||||||
<mat-option value="">계좌입금</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="내용">
|
|
||||||
<mat-option value="">카지노콤프</mat-option>
|
|
||||||
<mat-option value="">슬롯콤프</mat-option>
|
|
||||||
<mat-option value="">배팅콤프</mat-option>
|
|
||||||
<mat-option value="">첫충콤프</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<!-- <mat-form-field>
|
|
||||||
<mat-select placeholder="입금">
|
|
||||||
<mat-option value="">계좌입금</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="아이디">
|
|
||||||
<mat-option value="">아이디</mat-option>
|
|
||||||
<mat-option value="">닉네임</mat-option>
|
|
||||||
<mat-option value="">이름</mat-option>
|
|
||||||
<mat-option value="">사이트</mat-option>
|
|
||||||
<mat-option value="">파트너수동지급</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="가입일 정렬">
|
|
||||||
<mat-option value="">가입일 정렬</mat-option>
|
|
||||||
<mat-option value="">아이디 정렬</mat-option>
|
|
||||||
<mat-option value="">닉네임 정렬</mat-option>
|
|
||||||
<mat-option value="">캐쉬 정렬</mat-option>
|
|
||||||
<mat-option value="">콤프 정렬</mat-option>
|
|
||||||
<mat-option value="">쿠폰 정렬</mat-option>
|
|
||||||
<mat-option value="">입금 정렬</mat-option>
|
|
||||||
<mat-option value="">출금 정렬</mat-option>
|
|
||||||
<mat-option value="">차익 정렬</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="내림차순">
|
|
||||||
<mat-option value="">내림차순</mat-option>
|
|
||||||
<mat-option value="">오름차순</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field> -->
|
|
||||||
<!-- Search -->
|
<!-- Search -->
|
||||||
<mat-form-field
|
<div
|
||||||
class="fuse-mat-dense fuse-mat-no-subscript fuse-mat-rounded min-w-64"
|
*ngIf="__isSearchOpened"
|
||||||
|
class="relative flex flex-col sm:flex-row flex-0 sm:items-center sm:justify-between py-4 px-6 md:px-8 border-b"
|
||||||
>
|
>
|
||||||
<mat-icon
|
<!-- Actions -->
|
||||||
class="icon-size-5"
|
<div fxLayout="row wrap" class="items-center mt-6 sm:mt-0 sm:ml-0">
|
||||||
matPrefix
|
<!-- SelectBox -->
|
||||||
[svgIcon]="'heroicons_solid:search'"
|
<mat-form-field fxFlex class="bet-mat-form-field-wrapper-mb-0 mr-2">
|
||||||
></mat-icon>
|
<mat-select placeholder="전체">
|
||||||
<input
|
<mat-option value="">전체</mat-option>
|
||||||
matInput
|
<mat-option value="">생성아이디</mat-option>
|
||||||
[formControl]="searchInputControl"
|
<mat-option value="">생성닉네임</mat-option>
|
||||||
[autocomplete]="'off'"
|
<mat-option value="">지급아이디</mat-option>
|
||||||
[placeholder]="'Search'"
|
<mat-option value="">지급닉네임</mat-option>
|
||||||
/>
|
<mat-option value="">그룹번호</mat-option>
|
||||||
</mat-form-field>
|
<mat-option value="">쿠폰시리얼번호</mat-option>
|
||||||
<!-- Add user button -->
|
<mat-option value="">사용가능쿠폰</mat-option>
|
||||||
<button
|
<mat-option value="">사용완료쿠폰</mat-option>
|
||||||
class="ml-4"
|
</mat-select>
|
||||||
mat-flat-button
|
</mat-form-field>
|
||||||
[color]="'primary'"
|
<mat-form-field fxFlex class="bet-mat-form-field-wrapper-mb-0 mr-2">
|
||||||
(click)="__createProduct()"
|
<mat-select placeholder="등록일">
|
||||||
>
|
<mat-option value="">등록일</mat-option>
|
||||||
<!-- <mat-icon [svgIcon]="'heroicons_outline:plus'"></mat-icon> -->
|
<mat-option value="">쿠폰금액</mat-option>
|
||||||
<span class="ml-2 mr-1">검색하기</span>
|
<mat-option value="">쿠폰시작일</mat-option>
|
||||||
</button>
|
<mat-option value="">쿠폰종료일</mat-option>
|
||||||
<button>엑셀저장</button>
|
</mat-select>
|
||||||
<button>카지노머니확인</button>
|
</mat-form-field>
|
||||||
</div>
|
<mat-form-field fxFlex class="bet-mat-form-field-wrapper-mb-0 mr-2">
|
||||||
</div>
|
<mat-select placeholder="내림차순">
|
||||||
|
<mat-option value="">내림차순</mat-option>
|
||||||
<!-- Main -->
|
<mat-option value="">오름차순</mat-option>
|
||||||
<div class="flex flex-auto overflow-hidden">
|
</mat-select>
|
||||||
<!-- Products list -->
|
</mat-form-field>
|
||||||
<div
|
<!-- Search -->
|
||||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
<mat-form-field
|
||||||
>
|
fxFlex
|
||||||
<ng-container *ngIf="coupons$ | async as coupons">
|
class="fuse-mat-rounded min-w-64 bet-mat-form-field-wrapper-mb-0 mr-2"
|
||||||
<ng-container *ngIf="coupons.length > 0; else noCoupon">
|
>
|
||||||
<div class="grid">
|
<mat-icon
|
||||||
<!-- Header -->
|
class="icon-size-5"
|
||||||
<div
|
matPrefix
|
||||||
class="inventory-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"
|
[svgIcon]="'heroicons_solid:search'"
|
||||||
matSort
|
></mat-icon>
|
||||||
matSortDisableClear
|
<input
|
||||||
>
|
matInput
|
||||||
<div class="hidden sm:block"><mat-checkbox></mat-checkbox></div>
|
[formControl]="searchInputControl"
|
||||||
<div class="hidden sm:block">요율</div>
|
[autocomplete]="'off'"
|
||||||
<div class="hidden sm:block">상부트리</div>
|
[placeholder]="'Search user'"
|
||||||
<div class="hidden sm:block">관리</div>
|
/>
|
||||||
<div class="hidden sm:block">매장수</div>
|
</mat-form-field>
|
||||||
<div class="hidden sm:block">회원수</div>
|
<!-- Add user button -->
|
||||||
<div class="hidden sm:block">아이디</div>
|
<button
|
||||||
<div class="hidden sm:block">닉네임</div>
|
fxFlex
|
||||||
<div class="hidden sm:block">예금주</div>
|
mat-flat-button
|
||||||
<div class="hidden sm:block">연락처</div>
|
style="position: fixed; margin-top: 4px"
|
||||||
<div class="hidden sm:block">정산</div>
|
[color]="'primary'"
|
||||||
<div class="hidden sm:block">보유금</div>
|
(click)="__createProduct()"
|
||||||
<div class="hidden sm:block">게임중머니</div>
|
>
|
||||||
<div class="hidden sm:block">카지노->캐쉬</div>
|
<mat-icon [svgIcon]="'heroicons_outline:search'"></mat-icon>
|
||||||
<div class="hidden sm:block">금일콤프</div>
|
<span class="ml-2 mr-1">Search</span>
|
||||||
<div class="hidden sm:block">총입출</div>
|
</button>
|
||||||
<div class="hidden sm:block">로그</div>
|
|
||||||
<div class="hidden sm:block">상태</div>
|
|
||||||
<div class="hidden sm:block">회원수</div>
|
|
||||||
<div class="hidden sm:block">비고</div>
|
|
||||||
</div>
|
|
||||||
<!-- Rows -->
|
|
||||||
<ng-container *ngIf="coupons$ | async as coupons">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let coupon of coupons; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<mat-checkbox></mat-checkbox>
|
|
||||||
</div>
|
|
||||||
<!-- rate -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button
|
|
||||||
mat-button
|
|
||||||
color="primary"
|
|
||||||
matTooltip="요율확인
|
|
||||||
카지노-바카라: 0%
|
|
||||||
카지노-룰렛: 0%
|
|
||||||
카지노-드레곤타이거: 0%
|
|
||||||
카지노-그외: 0%
|
|
||||||
슬롯: 0%
|
|
||||||
카지노루징: 0%
|
|
||||||
슬롯루징: 0%"
|
|
||||||
>
|
|
||||||
요율
|
|
||||||
</button>
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<!-- 관리 -->
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="관리">
|
|
||||||
<mat-option value="">보유금지급/회수</mat-option>
|
|
||||||
<mat-option value="">수수료설정</mat-option>
|
|
||||||
<mat-option value="">콤프지급/회수</mat-option>
|
|
||||||
<mat-option value="">쿠폰머니지급/회수</mat-option>
|
|
||||||
<mat-option value="">쪽지보내기</mat-option>
|
|
||||||
<mat-option value="">베팅리스트</mat-option>
|
|
||||||
<mat-option value="">강제로그아웃</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- 매장수 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ coupon.branchCount }}
|
|
||||||
</button>
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ coupon.divisionCount }}
|
|
||||||
</button>
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ coupon.officeCount }}
|
|
||||||
</button>
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ coupon.storeCount }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<!-- 회원수 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ coupon.memberCount }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<!-- id -->
|
|
||||||
<ng-container *ngIf="users$ | async as users">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let user of users; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="hidden sm:block truncate"
|
|
||||||
(click)="viewUserDetail(user.id!)"
|
|
||||||
>
|
|
||||||
{{ coupon.id }}
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
<!-- nickname -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.nickname }}
|
|
||||||
</div>
|
|
||||||
<!-- accountHolder -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.accountHolder }}
|
|
||||||
</div>
|
|
||||||
<!-- 연락처 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.phoneNumber }}
|
|
||||||
</div>
|
|
||||||
<!-- 정산 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.calculateType }}
|
|
||||||
</div>
|
|
||||||
<!-- 보유금 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
캐쉬{{ coupon.ownCash }} 콤프{{ coupon.ownComp }} 쿠폰{{
|
|
||||||
coupon.ownCoupon
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
<!-- gameMoney -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.gameMoney }}
|
|
||||||
</div>
|
|
||||||
<!-- casinoCash -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
게임머니확인
|
|
||||||
</button>
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
게임머니회수
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<!-- todayComp -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.todayComp }}P
|
|
||||||
</div>
|
|
||||||
<!-- 총입출 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
입금{{ coupon.totalDeposit }} 출금{{
|
|
||||||
coupon.totalWithdraw
|
|
||||||
}}
|
|
||||||
차익{{ coupon.balance }}
|
|
||||||
</div>
|
|
||||||
<!-- log -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
가입{{ coupon.registDate }} 최종{{
|
|
||||||
coupon.finalSigninDate
|
|
||||||
}}
|
|
||||||
IP{{ coupon.ip }}
|
|
||||||
</div>
|
|
||||||
<!-- state -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.state }}
|
|
||||||
</div>
|
|
||||||
<!-- 회원수 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ coupon.memberCount }}
|
|
||||||
</div>
|
|
||||||
<!-- 비고 -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ coupon.note }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<mat-paginator
|
|
||||||
class="sm:absolute sm:inset-x-0 sm:bottom-0 border-b sm:border-t sm:border-b-0 z-10 bg-gray-50 dark:bg-transparent"
|
|
||||||
[ngClass]="{ 'pointer-events-none': isLoading }"
|
|
||||||
[length]="pagination?.length"
|
|
||||||
[pageIndex]="pagination?.page"
|
|
||||||
[pageSize]="pagination?.size"
|
|
||||||
[pageSizeOptions]="[5, 10, 25, 100]"
|
|
||||||
[showFirstLastButtons]="true"
|
|
||||||
></mat-paginator>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-template #noCoupon>
|
|
||||||
<div
|
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
|
||||||
>
|
|
||||||
There are no coupons!
|
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</div>
|
||||||
|
|
||||||
|
<!-- Main -->
|
||||||
|
<div class="flex flex-auto overflow-hidden">
|
||||||
|
<!-- Products list -->
|
||||||
|
<div
|
||||||
|
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
||||||
|
>
|
||||||
|
<ng-container *ngIf="coupons$ | async as coupons">
|
||||||
|
<ng-container *ngIf="coupons.length > 0; else noCoupon">
|
||||||
|
<div class="grid">
|
||||||
|
<!-- Header -->
|
||||||
|
<div
|
||||||
|
class="inventory-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>
|
||||||
|
<div>쿠폰시리얼번호</div>
|
||||||
|
<div>
|
||||||
|
생성아이디
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
닉네임
|
||||||
|
</div>
|
||||||
|
<div>발행수</div>
|
||||||
|
<div class="hidden sm:block">
|
||||||
|
지급아이디
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
닉네임
|
||||||
|
</div>
|
||||||
|
<div class="hidden md:block">
|
||||||
|
쿠폰시작일
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
쿠폰종료일
|
||||||
|
</div>
|
||||||
|
<div class="hidden md:block">사용여부</div>
|
||||||
|
<div class="hidden md:block">등록일자</div>
|
||||||
|
</div>
|
||||||
|
<!-- Rows -->
|
||||||
|
<ng-container *ngIf="coupons$ | async as coupons">
|
||||||
|
<ng-container
|
||||||
|
*ngFor="let coupon of coupons; trackBy: __trackByFn"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||||
|
>
|
||||||
|
<div>{{ coupon.couponGroupNumber }}</div>
|
||||||
|
<div>{{ coupon.couponSerialNumber }}</div>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
{{ coupon.issuedCouponId }}
|
||||||
|
</div>
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ coupon.issuedCouponNickname }}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{{ coupon.issuedCoupons }}
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block">
|
||||||
|
{{ coupon.receiveCouponId }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ coupon.receiveCouponNickname }}
|
||||||
|
</div>
|
||||||
|
<div class="hidden md:block">
|
||||||
|
{{ coupon.couponStartDate }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ coupon.couponFinishDate }}
|
||||||
|
</div>
|
||||||
|
<div class="hidden md:block">
|
||||||
|
{{ coupon.useOrNot }}
|
||||||
|
</div>
|
||||||
|
<div class="hidden md:block">
|
||||||
|
{{ coupon.issuedCouponDate }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ coupon.modifyCouponDate }}
|
||||||
|
<hr style="margin: 7px 0px" />
|
||||||
|
{{ coupon.useCouponDate }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ng-container>
|
||||||
|
</ng-container>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<mat-paginator
|
||||||
|
class="sm:absolute sm:inset-x-0 sm:bottom-0 border-b sm:border-t sm:border-b-0 z-10 bg-gray-50 dark:bg-transparent"
|
||||||
|
[ngClass]="{ 'pointer-events-none': isLoading }"
|
||||||
|
[length]="pagination?.length"
|
||||||
|
[pageIndex]="pagination?.page"
|
||||||
|
[pageSize]="pagination?.size"
|
||||||
|
[pageSizeOptions]="[5, 10, 25, 100]"
|
||||||
|
[showFirstLastButtons]="true"
|
||||||
|
></mat-paginator>
|
||||||
|
</ng-container>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-template #noCoupon>
|
||||||
|
<div
|
||||||
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
|
>
|
||||||
|
There are no coupon!
|
||||||
|
</div>
|
||||||
|
</ng-template>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -42,18 +42,22 @@ import { Router } from '@angular/router';
|
||||||
/* language=SCSS */
|
/* language=SCSS */
|
||||||
`
|
`
|
||||||
.inventory-grid {
|
.inventory-grid {
|
||||||
grid-template-columns: 60px auto 40px;
|
/* 그룹 시리얼 생성 발행수 지급 */
|
||||||
|
grid-template-columns: 140px 140px auto 100px 140px;
|
||||||
|
|
||||||
@screen sm {
|
@screen sm {
|
||||||
grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px;
|
/* 그룹 시리얼 생성 발행수 지급 시작 */
|
||||||
|
grid-template-columns: 140px 140px auto 100px 140px 140px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@screen md {
|
@screen md {
|
||||||
grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px 60px;
|
/* 그룹 시리얼 생성 발행수 지급 시작 사용 등록 */
|
||||||
|
grid-template-columns: 140px 140px auto 100px 140px 140px 40px 140px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@screen lg {
|
@screen lg {
|
||||||
grid-template-columns: 60px 70px 70px 70px 70px 100px 60px 60px auto 60px 60px 60px 60px;
|
/* 그룹 시리얼 생성 발행수 지급 시작 사용 등록 */
|
||||||
|
grid-template-columns: 140px 140px auto 100px 140px 140px 40px 140px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
|
@ -69,6 +73,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
coupons$!: Observable<Coupon[] | undefined>;
|
coupons$!: Observable<Coupon[] | undefined>;
|
||||||
users$!: Observable<User[] | undefined>;
|
users$!: Observable<User[] | undefined>;
|
||||||
|
|
||||||
|
__isSearchOpened = false;
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
searchInputControl = new FormControl();
|
searchInputControl = new FormControl();
|
||||||
selectedCoupon?: Coupon;
|
selectedCoupon?: Coupon;
|
||||||
|
|
|
@ -1,29 +1,17 @@
|
||||||
export interface Coupon {
|
export interface Coupon {
|
||||||
id?: string;
|
id: string;
|
||||||
totalPartnerCount?: number;
|
issuedCouponId?: string; // 쿠폰생성아이디
|
||||||
totalHoldingMoney?: number;
|
issuedCouponNickname?: string; // 쿠폰생성닉네임
|
||||||
totalComp?: number;
|
receiveCouponId?: string; // 쿠폰지급아이디
|
||||||
total?: number;
|
receiveCouponNickname?: string; // 쿠폰지급닉네임
|
||||||
branchCount?: number;
|
couponGroupNumber?: string; // 쿠폰그룹번호
|
||||||
divisionCount?: number;
|
couponSerialNumber?: string; // 쿠폰시리얼넘버
|
||||||
officeCount?: number;
|
issuedCoupons?: string; // 쿠폰발행수
|
||||||
storeCount?: number;
|
issuedCouponPrice?: number; // 발행금액
|
||||||
memberCount?: number;
|
couponStartDate?: Date; // 쿠폰시작일
|
||||||
nickname?: string;
|
couponFinishDate?: Date; // 쿠폰종료일
|
||||||
accountHolder?: string;
|
useOrNot?: string;
|
||||||
phoneNumber?: string;
|
issuedCouponDate?: Date; // 쿠폰발행일
|
||||||
calculateType?: string;
|
modifyCouponDate?: Date; // 쿠폰수정일
|
||||||
ownCash?: number;
|
useCouponDate?: Date; // 쿠폰사용일
|
||||||
ownComp?: number;
|
|
||||||
ownCoupon?: number;
|
|
||||||
gameMoney?: number;
|
|
||||||
todayComp?: number;
|
|
||||||
totalDeposit?: number;
|
|
||||||
totalWithdraw?: number;
|
|
||||||
balance?: number;
|
|
||||||
registDate?: string;
|
|
||||||
finalSigninDate?: string;
|
|
||||||
ip?: string;
|
|
||||||
state?: string;
|
|
||||||
note?: string;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user