chat-pc/src/components/talk/message/system/SysGroupCreateMessage.vue
Phoenix 044617580c fix(群组消息): 移除用户信息弹窗的点击事件
移除多个群组系统消息组件中用户名的点击事件,这些事件原本会触发用户信息弹窗
2025-06-11 10:23:42 +08:00

30 lines
587 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
import './sys-message.less'
import { useInject } from '@/hooks'
defineProps({
extra: Object,
data: Object
})
const { showUserInfoModal } = useInject()
</script>
<template>
<div class="im-message-sys-text">
<div class="sys-text">
<a >
{{ extra.owner_name }}
</a>
<span>创建了群聊并邀请了</span>
<template v-for="(user, index) in extra.members" :key="index">
<a >{{ user.nickname }}</a>
<em v-show="index < extra.members.length - 1"></em>
</template>
</div>
</div>
</template>