From b8a7310af01f39963b28e5fc82db416ab6da8b3f Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Sat, 5 Apr 2025 00:59:37 +0900 Subject: [PATCH 1/5] =?UTF-8?q?=ED=94=84=EB=A1=9C=ED=95=84=20=EC=9D=B4?= =?UTF-8?q?=EB=AF=B8=EC=A7=80=20=EB=82=98=EC=98=A4=EA=B2=8C,=20=EC=95=84?= =?UTF-8?q?=EB=AC=B4=EA=B8=B0=EB=8A=A5=EC=97=86=EB=8A=94=20=ED=8F=AC?= =?UTF-8?q?=EC=9D=B8=ED=84=B0=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/main/MainEventCalendar.vue | 8 ++++++-- src/components/main/MainMemberProfile.vue | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/main/MainEventCalendar.vue b/src/components/main/MainEventCalendar.vue index 8cd343b..34e76b2 100644 --- a/src/components/main/MainEventCalendar.vue +++ b/src/components/main/MainEventCalendar.vue @@ -5,7 +5,7 @@
Profile Image { - if (isSelectableDate(info)) { + if (isSelectableDate(info.date)) { if ($common.isToday(info.date)) { // 오늘 날짜 클릭 시 클래스 제거하고 요소 저장 todayEL = info.dayEl; diff --git a/src/components/main/MainMemberProfile.vue b/src/components/main/MainMemberProfile.vue index 6fd16db..b026af5 100644 --- a/src/components/main/MainMemberProfile.vue +++ b/src/components/main/MainMemberProfile.vue @@ -2,7 +2,7 @@
  • -
    +
    Date: Sat, 5 Apr 2025 10:03:15 +0900 Subject: [PATCH 2/5] =?UTF-8?q?=EA=B3=B5=ED=9C=B4=EC=9D=BC=20style=20?= =?UTF-8?q?=EB=8B=AC=EB=A0=A5=20=EC=A2=8C=EC=9A=B0=EB=A1=9C=20=EB=84=93?= =?UTF-8?q?=EA=B2=8C=20=EB=82=98=EC=98=A4=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/main/MainEventCalendar.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/main/MainEventCalendar.vue b/src/components/main/MainEventCalendar.vue index 34e76b2..a9591f6 100644 --- a/src/components/main/MainEventCalendar.vue +++ b/src/components/main/MainEventCalendar.vue @@ -298,7 +298,7 @@ // 날짜 선택 가능 여부를 확인하는 공통 함수 const isSelectableDate = date => { const checkDate = dayjs(date); - const isWeekend = checkDate.day() === 0 || checkDate.day() === 6; + const isWeekend = checkDate.day() === 0 || checkDate.day() === 6; // 주말체크 // 공휴일 체크 const isHoliday = calendarEvents.value.some( event => @@ -560,7 +560,6 @@ param.append('day', day); if (!weatherStore.dailyWeatherList?.length) { - console.log(123); await weatherStore.getWeatherInfo(); //dailyWeatherList.value = weatherStore.dailyWeatherList; console.log('dailyWeatherList.value: ', dailyWeatherList.value); @@ -603,4 +602,9 @@ align-items: center; text-align: center !important; */ } + + /* 공휴일만 가로로 넗게 나오게 */ + ::v-deep(.fc-daygrid-event-harness:has(.holiday-event)) { + width: 100% !important; + } From 3be85606545e55142ed138d2fc14925f576e6709 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Mon, 7 Apr 2025 10:20:05 +0900 Subject: [PATCH 3/5] =?UTF-8?q?=EC=9D=B4=EB=B2=A4=ED=8A=B8=20=ED=8F=B0?= =?UTF-8?q?=ED=8A=B8=20=ED=81=AC=EA=B8=B0=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/main/MainEventBoard.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/main/MainEventBoard.vue b/src/components/main/MainEventBoard.vue index cdc7ff5..1a4c9e2 100644 --- a/src/components/main/MainEventBoard.vue +++ b/src/components/main/MainEventBoard.vue @@ -1,8 +1,8 @@ From d2864f7ac0fa2bc4540ef85815c4fa08d1300207 Mon Sep 17 00:00:00 2001 From: khj0414 Date: Mon, 7 Apr 2025 10:24:39 +0900 Subject: [PATCH 4/5] =?UTF-8?q?=EC=9A=A9=EC=96=B4=EC=A7=91=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/wordDict/DictCard.vue | 6 +++--- src/views/wordDict/wordDict.vue | 31 +++++++++++++++++++++++++++- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/src/components/wordDict/DictCard.vue b/src/components/wordDict/DictCard.vue index 87c4e44..260f383 100644 --- a/src/components/wordDict/DictCard.vue +++ b/src/components/wordDict/DictCard.vue @@ -1,5 +1,5 @@