|
@@ -15,7 +15,7 @@
|
|
|
<span style="cursor: pointer">{{ currentTenantName }}</span>
|
|
|
</template>
|
|
|
<el-badge :value="messageCount" :max="99" class="navbar-item" :hidden="messageCount == 0">
|
|
|
- <el-icon style="margin-left: 10px;">
|
|
|
+ <el-icon style="margin-left: 10px;" @click="handleShowMessageDialog">
|
|
|
<ChatDotRound />
|
|
|
</el-icon>
|
|
|
<!-- <span style="margin-left: 10px;cursor: pointer">站内信</span> -->
|
|
@@ -356,6 +356,11 @@ function handleView(row) {
|
|
|
function closeViewMessageDialog() {
|
|
|
getMessages()
|
|
|
}
|
|
|
+
|
|
|
+function handleShowMessageDialog() {
|
|
|
+ showMessageDialog.value = true
|
|
|
+ getMessages()
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|