语音通话的图标修改

This commit is contained in:
bob
2025-03-23 21:53:16 +08:00
parent a332753328
commit 86e6adb7b8
4 changed files with 15 additions and 16 deletions

View File

@@ -7,7 +7,7 @@ import {
Check,
Edit,
ChatRound,
Microphone,
Phone,
VideoCamera
} from '@element-plus/icons-vue'
import default_avatar from '@/assets/image/default_avatar.png'
@@ -297,7 +297,7 @@ watch(
color="#409eff"
@click="onVoiceCall"
>
<Microphone />
<Phone />
</el-icon>
<el-icon
class="action-button"

View File

@@ -1,14 +1,6 @@
<script setup>
import { ref, nextTick, computed } from 'vue'
import {
ChatRound,
Microphone,
VideoCamera,
Edit,
Delete,
Check,
Close
} from '@element-plus/icons-vue'
import { ChatRound, Phone, VideoCamera, Edit, Delete, Check, Close } from '@element-plus/icons-vue'
import ContactItem from '@/components/item/ContactItem.vue'
import { sessionShowTime } from '@/js/utils/common'
import router from '@/router'
@@ -281,7 +273,7 @@ const onVideoCall = () => {
color="#409eff"
@click="onVoiceCall"
>
<Microphone />
<Phone />
</el-icon>
<el-icon
class="action-button"

View File

@@ -2,7 +2,7 @@ eslint-disable prettier/prettier
<script setup>
import { ref, onMounted, onUnmounted, computed, nextTick, watch } from 'vue'
import {
Microphone,
Phone,
VideoCamera,
MoreFilled,
CirclePlus,
@@ -1054,7 +1054,7 @@ const onSendAudio = ({ objectId }) => {
:title="selectedSession.sessionType === MsgType.GROUP_CHAT ? '多人语音' : '语音通话'"
@click="onVoiceCall"
>
<Microphone />
<Phone />
</el-icon>
<el-icon
class="action-button"

View File

@@ -1,6 +1,13 @@
<script setup>
import { ref, computed, onMounted, onUnmounted, nextTick, markRaw } from 'vue'
import { ChatDotRound, Tickets, Microphone, VideoCamera, Mute } from '@element-plus/icons-vue'
import {
ChatDotRound,
Tickets,
Microphone,
VideoCamera,
Mute,
Phone
} from '@element-plus/icons-vue'
import AtIcon from '@/assets/svg/at.svg'
import adminIcon from '@/assets/svg/administrator.svg'
import DeleteIcon from '@/assets/svg/delete.svg'
@@ -63,7 +70,7 @@ const lable_atTa = ref({
const lable_voiceCall = ref({
label: 'voiceCall',
desc: '语音通话',
icon: markRaw(Microphone)
icon: markRaw(Phone)
})
const lable_videoCall = ref({
label: 'videoCall',