250327 작업
This commit is contained in:
parent
5b42847028
commit
c4ff151581
@ -14,15 +14,17 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-9 mx-0 px-0">
|
<div class="col-9 mx-0 px-0">
|
||||||
<template v-if="category.CMNCODVAL === 300201">
|
<template v-if="category.CMNCODVAL === 300201">
|
||||||
<div v-for="member in birthdayList" :key="member.MEMBERSEQ">
|
<div class="ms-2">
|
||||||
<ul class="row gx-2 mb-0 list-inline">
|
<ul class="row gx-1 mb-0 list-inline d-flex align-items-center">
|
||||||
<li class="col-4 mb-3">
|
<li class="col-4 me-0" v-for="member in birthdayList" :key="member.MEMBERSEQ">
|
||||||
<img
|
<div class="ratio ratio-1x1 mb-0 profile-list">
|
||||||
:src="`${baseUrl}upload/img/profile/${member.MEMBERPRF}`"
|
<img
|
||||||
alt="User Profile"
|
:src="`${baseUrl}upload/img/profile/${member.MEMBERPRF}`"
|
||||||
class="rounded-circle"
|
alt="User Profile"
|
||||||
@error="$event.target.src = '/img/icons/icon.png'"
|
class="rounded-circle"
|
||||||
/>
|
@error="$event.target.src = '/img/icons/icon.png'"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -30,12 +32,8 @@
|
|||||||
<template v-if="category.CMNCODVAL === 300202">
|
<template v-if="category.CMNCODVAL === 300202">
|
||||||
<div class="ms-2">
|
<div class="ms-2">
|
||||||
<ul class="row gx-1 mb-0 list-inline d-flex align-items-center">
|
<ul class="row gx-1 mb-0 list-inline d-flex align-items-center">
|
||||||
<li class="col-4 me-0">
|
<li class="col-4 me-0" v-for="member in vacationList" :key="member.MEMBERSEQ">
|
||||||
<div
|
<div class="ratio ratio-1x1 mb-0 profile-list">
|
||||||
v-for="member in vacationList"
|
|
||||||
:key="member.MEMBERSEQ"
|
|
||||||
class="ratio ratio-1x1 mb-0 profile-list"
|
|
||||||
>
|
|
||||||
<img
|
<img
|
||||||
:src="`${baseUrl}upload/img/profile/${member.MEMBERPRF}`"
|
:src="`${baseUrl}upload/img/profile/${member.MEMBERPRF}`"
|
||||||
alt="User Profile"
|
alt="User Profile"
|
||||||
|
|||||||
@ -3,5 +3,5 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import MainCalendar from '@c/main/MainCalendar.vue';
|
import MainCalendar from '@/components/main/MainEventCalendar.vue';
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user