This commit is contained in:
Park Byung Eun 2022-08-14 08:12:12 +00:00
parent f57364bb4d
commit 9b6c62ad2e
2 changed files with 23 additions and 9 deletions

View File

@ -99,8 +99,11 @@
<div <div
class="coupon-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" class="coupon-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>
생성아이디 생성아이디
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
@ -129,8 +132,18 @@
<div <div
class="coupon-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="coupon-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div>{{ coupon.couponGroupNumber }}</div> <div
<div>{{ coupon.couponSerialNumber }}</div> style="
width: 300px;
padding: 0 5px;
overflow: hidden;
text-overflow: ellipsis;
"
>
{{ coupon.couponGroupNumber }}
<hr style="margin: 7px 0px" />
{{ coupon.couponSerialNumber }}
</div>
<div> <div>
<div> <div>
{{ coupon.issuedCouponId }} {{ coupon.issuedCouponId }}
@ -138,9 +151,7 @@
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
{{ coupon.issuedCouponNickname }} {{ coupon.issuedCouponNickname }}
</div> </div>
<div>
{{ coupon.issuedCouponMoney }}
</div>
<div> <div>
{{ coupon.issuedCoupons }} {{ coupon.issuedCoupons }}
</div> </div>
@ -149,6 +160,9 @@
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
{{ coupon.takeCouponNickname }} {{ coupon.takeCouponNickname }}
</div> </div>
<div>
{{ coupon.issuedCouponMoney }}
</div>
<div class="hidden md:block"> <div class="hidden md:block">
{{ coupon.couponStartDate }} {{ coupon.couponStartDate }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />

View File

@ -56,8 +56,8 @@ import { Router } from '@angular/router';
} }
@screen lg { @screen lg {
/* 그룹 시리얼 생성 발행수 지급 시작 사용 등록 */ /* 그룹 생성 발행수 지급 금액 시작 사용 등록 */
grid-template-columns: 140px 140px auto 100px 140px 140px 40px 140px; grid-template-columns: auto 100px 80px 100px 100px 140px 60px 140px;
} }
} }
`, `,