+
+
+
+ {{ birthdayPartyList[0].LOCEVTPLC }}
+
+
+ {{ $common.dateFormatter(birthdayPartyList[0].LOCEVTTME) }}
+
+
+
+
+ {{ dinnerList[0].LOCEVTPLC }}
+
+
+ {{ $common.dateFormatter(dinnerList[0].LOCEVTTME) }}
+
+
+
+
+ {{ teaTimeList[0].LOCEVTPLC }}
+
+
+ {{ $common.dateFormatter(teaTimeList[0].LOCEVTTME) }}
+
+
+
+
+ {{ workShopList[0].LOCEVTPLC }}
+
+
+ {{ $common.dateFormatter(workShopList[0].LOCEVTTME) }}
+
+
@@ -67,30 +106,17 @@
vacationList: {
type: Array,
},
+ birthdayPartyList: {
+ type: Array,
+ },
+ dinnerList: {
+ type: Array,
+ },
+ teaTimeList: {
+ type: Array,
+ },
+ workShopList: {
+ type: Array,
+ },
});
-
- const emit = defineEmits(['drop', 'update:selectedProject', 'update:checkedInProject']);
-
- // 현재 사용자 확인
- const isCurrentUser = commuter => {
- return props.user && commuter && commuter.MEMBERSEQ === props.user.id;
- };
-
- // 드래그 시작 이벤트 핸들러
- const dragStart = (event, project) => {
- // 드래그 데이터 설정
- event.dataTransfer.setData('application/json', JSON.stringify(project));
- event.dataTransfer.effectAllowed = 'copy';
- };
-
- // 드래그 오버 드롭 허용
- const allowDrop = event => {
- event.preventDefault();
- };
-
- // 드롭
- const handleDrop = (event, targetProject) => {
- event.preventDefault();
- emit('drop', { event, targetProject });
- };
diff --git a/src/components/main/MainMemberProfile.vue b/src/components/main/MainMemberProfile.vue
index 7fa8602..357b4b3 100644
--- a/src/components/main/MainMemberProfile.vue
+++ b/src/components/main/MainMemberProfile.vue
@@ -5,8 +5,9 @@