This commit is contained in:
min.jiang 2024-06-25 07:02:17 +08:00
parent 8645fdd15e
commit b5065151d4
2 changed files with 22 additions and 1 deletions

View File

@ -23,6 +23,7 @@
<span class="conversation-last-update-date">{{ <span class="conversation-last-update-date">{{
getDateFromFulltimeString(conversation.summary.last_message?.create_time) getDateFromFulltimeString(conversation.summary.last_message?.create_time)
}}</span> }}</span>
<!-- <span v-if="unreadCountMapper()" class="conversation-unreadcount">2</span> -->
</div> </div>
<div class="conversation-summary-highlight-container"> <div class="conversation-summary-highlight-container">
{{ conversation.summary.last_message?.message_body }} {{ conversation.summary.last_message?.message_body }}
@ -106,7 +107,11 @@ export default {
writtenMessage: null writtenMessage: null
} }
}, },
// computed: {
// unreadCountMapper() {
// return this.$store.getters['basic/unreadCountMapper']
// }
// },
methods: { methods: {
fetchMessageThreads() { fetchMessageThreads() {
MessageHubApi.fetchMessageThreads() MessageHubApi.fetchMessageThreads()
@ -197,6 +202,19 @@ export default {
white-space: nowrap; white-space: nowrap;
flex-shrink: 0; flex-shrink: 0;
} }
.conversation-unreadcount {
font-size: 14px;
background: red;
display: inline-block;
width: 20px;
height: 20px;
text-align: center;
border-radius: 10px;
color: white;
font-weight: bold;
line-height: 20px;
margin-left: 10px;
}
} }
.conversation-summary-highlight-container { .conversation-summary-highlight-container {
font-size: 14px; font-size: 14px;

View File

@ -73,6 +73,9 @@ const basicStore = {
} }
} }
return count return count
},
unreadCountMapper(state) {
return state.unreadCountMapper
} }
} }
} }