휴가 왕관 아이콘
All checks were successful
LocalNet_front/pipeline/head This commit looks good

This commit is contained in:
dyhj625 2025-03-31 10:26:12 +09:00
parent e270b0bb88
commit fcb8d4535e
3 changed files with 26 additions and 17 deletions

BIN
public/img/icons/Crown.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 KiB

View File

@ -1,5 +1,5 @@
<template>
<div class="row gx-2 mb-4">
<div class="row gx-2 mb-10 mt-1">
<div class="col-3">
<div class="ratio ratio-1x1">
<!-- 오전 반차 버튼 -->

View File

@ -1,5 +1,4 @@
<template>
<div class="">
<ul class="row gx-2 mb-0 list-inline ">
<li
v-for="(user, index) in sortedUserList"
@ -10,7 +9,13 @@
data-bs-placement="top"
:aria-label="user.MEMBERSEQ"
>
<div class="ratio ratio-1x1 mb-0 profile-list">
<div class="ratio ratio-1x1 mb-0 profile-list position-relative">
<img
v-if="user.MEMBERSEQ === employeeId"
src="/img/icons/Crown.png"
alt="Crown"
class="top-0 start-50 translate-middle crown-icon"
/>
<img
class="rounded-circle profile-img"
:src="getUserProfileImage(user.MEMBERPRF)"
@ -25,7 +30,6 @@
</span>
</li>
</ul>
</div>
</template>
<script setup>
@ -95,4 +99,9 @@ borderStyle: "solid",
</script>
<style scoped>
.crown-icon {
width: 80%;
height: 60%;
z-index: 10;
}
</style>