diff --git a/src/components/survey-sale/list/ListTable.tsx b/src/components/survey-sale/list/ListTable.tsx index 19cbec4..70f7a33 100644 --- a/src/components/survey-sale/list/ListTable.tsx +++ b/src/components/survey-sale/list/ListTable.tsx @@ -68,7 +68,11 @@ export default function ListTable() {
  • handleDetailClick(survey.id)}>
    -
    {survey.srlNo}
    + {survey.srlNo?.startsWith('一時保存') ? ( +
    {survey.srlNo}
    + ) : ( +
    {survey.srlNo}
    + )}
    {formatDate(survey.regDt)}
    {survey.buildingName === null ? '-' : survey.buildingName}
    diff --git a/src/styles/components/_sub.scss b/src/styles/components/_sub.scss index a1d2de2..8f551bb 100644 --- a/src/styles/components/_sub.scss +++ b/src/styles/components/_sub.scss @@ -93,6 +93,21 @@ } } .sale-list-wrap{ + .sale-data-num { + position: relative; + @include defaultFont($font-s-13, $font-w-400, #1259CB); + padding-right: 6px; + &::after{ + content: ''; + position: absolute; + top: 50%; + right: 0; + transform: translateY(-50%); + width: 1px; + height: 10px; + background-color: #A2ABB8; + } + } .sale-list-item{ padding-top: 14px; padding-bottom: 14px;