이미지수정정

This commit is contained in:
khj0414 2025-04-03 10:59:46 +09:00
parent 55c0c33894
commit 9548025afd

View File

@ -8,10 +8,10 @@
</div>
<div class="card-body">
<ul class="p-0 m-0" v-for="item in wordList" :key="item.WRDDICSEQ">
<li class="d-flex mb-1">
<div class="avatar flex-shrink-0 me-1" >
<li class="d-flex align-items-center mb-1">
<!-- 프로필 이미지 -->
<div class="avatar flex-shrink-0 me-2 d-flex align-items-center">
<img
style="cursor: auto;"
class="rounded-circle user-avatar"
:src="getProfileImage(item.lastEditor.profileImage)"
alt="최종 작성자"
@ -19,14 +19,19 @@
@error="setDefaultImage"
/>
</div>
<div class="timeline-event ps-1" style="cursor: pointer;" @click="goWordList(item.WRDDICCAT,item.WRDDICTTL)">
<!-- 텍스트 영역 -->
<div class="timeline-event ps-1 flex-grow-1" style="cursor: pointer;" @click="goWordList(item.WRDDICCAT,item.WRDDICTTL)">
<div class="timeline-header">
<small class="text-primary text-uppercase">{{ item.category }}</small>
<small class="text-primary text-uppercase">{{ item.category }}</small>
</div>
<h6 class="my-50"> {{truncateTitle(item.WRDDICTTL) }}</h6>
<h6 class="my-50 d-flex align-items-center">
{{ truncateTitle(item.WRDDICTTL) }}
</h6>
<p class="text-body mb-0"><small>{{$common.dateFormatter(item.lastEditor.updatedAt)}}</small></p>
</div>
</li>
</ul>
</div>
<!-- 모달 푸터: 더보기 버튼 오른쪽 정렬 -->
@ -112,7 +117,7 @@ const goWordList = (category, indexKeyword) => {
path: '/wordDict',
query: {
indexKeyword: firstChar,
category: category
category: category,
}
});
};