Commit 1c77ba8e by YunaiV

code review 微信的实现

parent 0ceddc9c
...@@ -47,5 +47,3 @@ const props = defineProps<{ ...@@ -47,5 +47,3 @@ const props = defineProps<{
const item = ref(props.item) const item = ref(props.item)
</script> </script>
<style scoped></style>
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
class="avue-comment__body" class="avue-comment__body"
:style="item.sendFrom === SendFrom.MpBot ? 'background: #6BED72;' : ''" :style="item.sendFrom === SendFrom.MpBot ? 'background: #6BED72;' : ''"
> >
<!-- 【事件】区域 --> <!-- 【事件】区域 TODO 芋艿:是不是把拆个 Message 出来,里面包括 MsgEvent + 各种其它消息,分开有点不够整体 -->
<MsgEvent v-if="item.type === MsgType.Event" :item="item" /> <MsgEvent v-if="item.type === MsgType.Event" :item="item" />
<!-- 【消息】区域 --> <!-- 【消息】区域 -->
<div v-else-if="item.type === MsgType.Text">{{ item.content }}</div> <div v-else-if="item.type === MsgType.Text">{{ item.content }}</div>
...@@ -68,7 +68,6 @@ ...@@ -68,7 +68,6 @@
</div> </div>
</div> </div>
</template> </template>
<script setup lang="ts" name="MsgList"> <script setup lang="ts" name="MsgList">
import WxVideoPlayer from '@/views/mp/components/wx-video-play' import WxVideoPlayer from '@/views/mp/components/wx-video-play'
import WxVoicePlayer from '@/views/mp/components/wx-voice-play' import WxVoicePlayer from '@/views/mp/components/wx-voice-play'
......
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