| | |
| | | class="rowStyle cursor--pointer" |
| | | justify="space-between" |
| | | :class="{'new': newAppointment }" |
| | | @click.native="openDetail" |
| | | @click.native="viewDetail" |
| | | > |
| | | <div class="test"> |
| | | <div class="unread" v-if="isReserved"> |
| | |
| | | this.memo = this.memoInfo.content; |
| | | } |
| | | |
| | | ////////////////////////////////////////////////////////////////////// |
| | | |
| | | viewDetail(): void { |
| | | this.$router.push(`/appointment/${this.client.id}`); |
| | | } |
| | | |
| | | get newAppointment(): boolean { |
| | | return !this.client.consultantViewTime |
| | | && this.client.communicateStatus === 'reserved'; |