이미지수정정
This commit is contained in:
parent
55c0c33894
commit
9548025afd
@ -8,10 +8,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<ul class="p-0 m-0" v-for="item in wordList" :key="item.WRDDICSEQ">
|
<ul class="p-0 m-0" v-for="item in wordList" :key="item.WRDDICSEQ">
|
||||||
<li class="d-flex mb-1">
|
<li class="d-flex align-items-center mb-1">
|
||||||
<div class="avatar flex-shrink-0 me-1" >
|
<!-- 프로필 이미지 -->
|
||||||
|
<div class="avatar flex-shrink-0 me-2 d-flex align-items-center">
|
||||||
<img
|
<img
|
||||||
style="cursor: auto;"
|
|
||||||
class="rounded-circle user-avatar"
|
class="rounded-circle user-avatar"
|
||||||
:src="getProfileImage(item.lastEditor.profileImage)"
|
:src="getProfileImage(item.lastEditor.profileImage)"
|
||||||
alt="최종 작성자"
|
alt="최종 작성자"
|
||||||
@ -19,14 +19,19 @@
|
|||||||
@error="setDefaultImage"
|
@error="setDefaultImage"
|
||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div class="timeline-header">
|
||||||
<small class="text-primary text-uppercase">{{ item.category }}</small>
|
<small class="text-primary text-uppercase">{{ item.category }}</small>
|
||||||
</div>
|
</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>
|
<p class="text-body mb-0"><small>{{$common.dateFormatter(item.lastEditor.updatedAt)}}</small></p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<!-- 모달 푸터: 더보기 버튼 오른쪽 정렬 -->
|
<!-- 모달 푸터: 더보기 버튼 오른쪽 정렬 -->
|
||||||
@ -112,7 +117,7 @@ const goWordList = (category, indexKeyword) => {
|
|||||||
path: '/wordDict',
|
path: '/wordDict',
|
||||||
query: {
|
query: {
|
||||||
indexKeyword: firstChar,
|
indexKeyword: firstChar,
|
||||||
category: category
|
category: category,
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user