|
@@ -7,6 +7,7 @@
|
|
|
:selectedConversationDomRect="currentConversationDomRect"
|
|
|
@closeConversationActionMenu="closeConversationActionMenu"
|
|
|
/>
|
|
|
+
|
|
|
<div
|
|
|
v-for="(conversation, index) in conversationList"
|
|
|
:id="`convlistitem-${index}`"
|
|
@@ -86,6 +87,19 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div
|
|
|
+ v-if="conversationList"
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ height: 90vh;
|
|
|
+ justify-content: center;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <img src="./empaty.jpg" style="width: 200px; height: 150px" />
|
|
|
+ <span style="margin-top: 20px"> 暂无会话~</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|