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>
<thead>
<tr>
<th class="!border-l-[0]">
<th class="w-auto !border-l-[0]">
{{ tm('Coupon_Item_Name') }}
</th>
<th
@@ -641,7 +641,7 @@ onMounted(async () => {
>
{{ tm('Coupon_Item_RegistDate') }}
</th>
<th class="w-[90px] md:w-[180px]">
<th class="w-[1%] whitespace-nowrap">
{{ tm('Coupon_Item_Status') }}
</th>
</tr>
@@ -666,6 +666,7 @@ onMounted(async () => {
>
<tr>
<td
class="w-auto"
:class="
couponIdx === couponList.length - 1
? '!border-l-[0] !border-b-[0]'
@@ -677,7 +678,9 @@ onMounted(async () => {
<td
v-if="breakpoints.isMd || breakpoints.isDesktop"
:class="
couponIdx === couponList.length - 1 ? '!border-b-[0]' : ''
couponIdx === couponList.length - 1
? 'w-[260px] !border-b-[0]'
: 'w-[260px]'
"
>
<p>
@@ -688,7 +691,9 @@ onMounted(async () => {
</td>
<td
: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
@@ -819,7 +824,7 @@ onMounted(async () => {
/* Table Style */
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 {
@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]