Commit da9a3bf9 by zhousil

福利宝客服

parent 6e902fe1
...@@ -49,6 +49,12 @@ export default class ChatList extends Vue { ...@@ -49,6 +49,12 @@ export default class ChatList extends Vue {
@chatStore.Action(ChatStore.ACTION_CLEAR_CURRENT_CHAT_DATA) @chatStore.Action(ChatStore.ACTION_CLEAR_CURRENT_CHAT_DATA)
protected readonly reset!: ChatStore.ACTION_CLEAR_CURRENT_CHAT_DATA; protected readonly reset!: ChatStore.ACTION_CLEAR_CURRENT_CHAT_DATA;
@chatStore.Getter(ChatStore.STATE_CHAT_MSG_HISTORY)
protected readonly historyMessage!: ChatStore.STATE_CHAT_MSG_HISTORY;
@chatStore.Getter(ChatStore.STATE_CHAT_SENDING_MESSAGES)
protected readonly sendingMessages!: ChatStore.STATE_CHAT_SENDING_MESSAGES;
private readonly invoker = Xim.getSdk(); private readonly invoker = Xim.getSdk();
protected parseMesage(data: ChatItem) { protected parseMesage(data: ChatItem) {
......
...@@ -26,6 +26,9 @@ ...@@ -26,6 +26,9 @@
text-decoration: underline; text-decoration: underline;
margin-right: 8px; margin-right: 8px;
cursor: pointer; cursor: pointer;
&:hover{
color: #666;
}
} }
} }
...@@ -66,5 +69,8 @@ ...@@ -66,5 +69,8 @@
margin-bottom: 10px; margin-bottom: 10px;
text-decoration: underline; text-decoration: underline;
cursor: pointer; cursor: pointer;
&:hover{
color: #666;
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment