mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2025-12-30 11:02:25 +00:00
语音通话的图标修改
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user