Merge branch 'feature/20251126_jo_bugfix' into 'feature/202501107-all'

fix: 디자인QA)쿠폰등록-쿠폰등록내역 리스트 테이블 상태값 셀 수정

See merge request sgp-web-d/web-template-fe!13
This commit is contained in:
김채린
2025-12-15 02:30:17 +00:00

View File

@@ -632,7 +632,7 @@ onMounted(async () => {
<table> <table>
<thead> <thead>
<tr> <tr>
<th class="!border-l-[0]"> <th class="w-auto !border-l-[0]">
{{ tm('Coupon_Item_Name') }} {{ tm('Coupon_Item_Name') }}
</th> </th>
<th <th
@@ -641,7 +641,7 @@ onMounted(async () => {
> >
{{ tm('Coupon_Item_RegistDate') }} {{ tm('Coupon_Item_RegistDate') }}
</th> </th>
<th class="w-[90px] md:w-[180px]"> <th class="w-[1%] whitespace-nowrap">
{{ tm('Coupon_Item_Status') }} {{ tm('Coupon_Item_Status') }}
</th> </th>
</tr> </tr>
@@ -666,6 +666,7 @@ onMounted(async () => {
> >
<tr> <tr>
<td <td
class="w-auto"
:class=" :class="
couponIdx === couponList.length - 1 couponIdx === couponList.length - 1
? '!border-l-[0] !border-b-[0]' ? '!border-l-[0] !border-b-[0]'
@@ -677,7 +678,9 @@ onMounted(async () => {
<td <td
v-if="breakpoints.isMd || breakpoints.isDesktop" v-if="breakpoints.isMd || breakpoints.isDesktop"
:class=" :class="
couponIdx === couponList.length - 1 ? '!border-b-[0]' : '' couponIdx === couponList.length - 1
? 'w-[260px] !border-b-[0]'
: 'w-[260px]'
" "
> >
<p> <p>
@@ -688,7 +691,9 @@ onMounted(async () => {
</td> </td>
<td <td
:class=" :class="
couponIdx === couponList.length - 1 ? '!border-b-[0]' : '' couponIdx === couponList.length - 1
? '!px-[16px] md:!px-[20px] w-[1%] whitespace-nowrap !border-b-[0]'
: '!px-[16px] md:!px-[20px] w-[1%] whitespace-nowrap'
" "
> >
<template <template
@@ -819,7 +824,7 @@ onMounted(async () => {
/* Table Style */ /* Table Style */
table { table {
@apply w-full h-auto border-collapse border-spacing-0 table-fixed; @apply w-full h-auto border-collapse border-spacing-0 table-auto;
} }
table th { table th {
@apply py-[8px] px-[12px] border border-[#D9D9D9] border-t-[0] border-r-[0] bg-[#FAFAFA] text-[#1F1F1F] text-[14px] font-bold leading-[24px] tracking-[-0.42px] @apply py-[8px] px-[12px] border border-[#D9D9D9] border-t-[0] border-r-[0] bg-[#FAFAFA] text-[#1F1F1F] text-[14px] font-bold leading-[24px] tracking-[-0.42px]