Commit 487b29e5 by zhousil

头像翻转

parent 7e8a37ba
Showing with 5 additions and 4 deletions
...@@ -34,9 +34,7 @@ ...@@ -34,9 +34,7 @@
@open="openFile" @open="openFile"
/> />
<avatar <avatar
v-if=" v-if="!isQuestionAnswerMessage && !isWithdrawMessage"
!isQuestionAnswerMessage && !isWithdrawMessage
"
:src=" :src="
chatRole === 'admin' || chatRole === 'customer-service' chatRole === 'admin' || chatRole === 'customer-service'
? defaultAvatar ? defaultAvatar
...@@ -497,6 +495,9 @@ ...@@ -497,6 +495,9 @@
&.algin-left { &.algin-left {
text-align: left; text-align: left;
} }
.cs-flex-direction {
flex-direction: row-reverse;
}
} }
.msg-detail { .msg-detail {
......
...@@ -981,7 +981,7 @@ export default { ...@@ -981,7 +981,7 @@ export default {
} }
return await Chat.getSdk() return await Chat.getSdk()
.model(currentChat.model_name) .model(currentChat.model_name)
.chat(currentChat.obj_id, orgId()) .chat(currentChat.obj_id, currentChat.org_id)
.removeMember(uids.map((id) => +id)) .removeMember(uids.map((id) => +id))
.finally(() => dispatch(ChatStore.ACTION_GET_CHAT_MEMBERS)); .finally(() => dispatch(ChatStore.ACTION_GET_CHAT_MEMBERS));
}, },
......
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