Skip to content

Commit

Permalink
feat(develop): 서비스 플로우 및 ux 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
taewan2002 committed Feb 2, 2024
1 parent 9606d43 commit 2b074df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions components/home/Report.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@ export default {
// 2) 지난주 확인 안 한 돌아보기 있을 때
if (this.isLastestReportUnread) {
return `*한 주 돌아보기가 완성되었어요!* \n확인해보러 가볼까요?`;
return `*마음 상태 보고서가 완성되었어요!* \n확인해보러 가볼까요?`;
}
return `*이번주도 수고했어요!* \n한 주 돌아보기 보고서가 곧 생성돼요!`;
return `*이번주도 수고했어요!* \n마음 상태 보고서가 곧 생성돼요!`;
}
// 조건 미충족
return `이번 주에 *${
3 - this.generated_total_count
}개* 더 기록해주시면 \n한 주 돌아보기 보고서가 완성돼요!`;
}개* 더 기록해주시면 \n마음 상태 보고서가 완성돼요!`;
},
/** 지난주 돌아보기 확인 여부 */
isLastestReportUnread() {
Expand Down
2 changes: 1 addition & 1 deletion pages/report/[id].vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="header"><BackBtn :is-dark="true" />한 주 돌아보기</div>
<div class="header"><BackBtn :is-dark="true" />마음 상태 보고서</div>
<div class="contents">
<Icon class="img_blur_elipsis" />

Expand Down
11 changes: 5 additions & 6 deletions pages/report/index.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<template>
<div class="viewport">
<div class="header">
<Icon class="ic_back_white" @click="this.$router.back()" />한 주
돌아보기
<Icon class="ic_back_white" @click="this.$router.back()" />마음 상태 보고서
</div>

<div class="contents">
Expand All @@ -11,10 +10,10 @@
<div v-if="generated_total_count < 3">
이번주에 <b>{{ 3 - generated_total_count }}개</b> 더
기록해주시면 <br />
한 주 돌아보기가 완성돼요!
마음 상태 보고서가 완성돼요!
</div>
<div v-else>
한 주 돌아보기 보고서가 만들어지고 있어요 :&#41;<br />
마음 상태 보고서가 만들어지고 있어요 :&#41;<br />
</div>
</div>
<div class="report-progress-wrap">
Expand All @@ -37,11 +36,11 @@
</div>
<div class="report-content report-content-2">
<div class="report-content-2-title">
<Icon class="ic_box" />{{ user?.nickname }}님의 돌아보기
<Icon class="ic_box" />{{ user?.nickname }}님의 마음 상태 보고서
</div>
<div class="report-content-2-desc">
하루하루 열심히 기록하신 일기, 일정을 바탕으로 <br />
한 주 돌아보기를 보내드려요.
마음 상태 보고서를 보내드려요.
</div>

<ReportItems
Expand Down

0 comments on commit 2b074df

Please sign in to comment.