修复已知问题
This commit is contained in:
@@ -84,6 +84,9 @@
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
// #ifdef APP-PLUS
|
||||
import * as CallLib from '@/uni_modules/RongCloud-CallWrapper/lib/index'
|
||||
// #endif
|
||||
import {
|
||||
ref,
|
||||
onMounted,
|
||||
@@ -121,6 +124,7 @@
|
||||
// @Start uniapp use Chat only
|
||||
import { onLoad, onUnload } from '@dcloudio/uni-app'
|
||||
import { initChat, logout } from './entry-chat-only.ts'
|
||||
import { navigateTo } from '../../../utils/router.js'
|
||||
|
||||
// 返回状态
|
||||
const backStatusName = ref('')
|
||||
@@ -357,6 +361,23 @@
|
||||
)
|
||||
currentConversationID.value = conversationID
|
||||
}
|
||||
|
||||
// #ifdef APP-PLUS
|
||||
CallLib.init({})
|
||||
CallLib.onCallReceived(res => {
|
||||
console.log(
|
||||
'Engine:OnCallReceived=>' + '监听通话呼入, 目标id=>',
|
||||
res.data
|
||||
)
|
||||
if (res.data.targetId) {
|
||||
navigateTo('/pages/room/incom', {
|
||||
type: res.data.extra,
|
||||
userID: res.data.targetId
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
// #endif
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss" src="./style/index.scss"></style>
|
||||
|
||||
@@ -1,108 +1,70 @@
|
||||
<script setup lang="ts">
|
||||
// import * as CallLib from '@/uni_modules/RongCloud-CallWrapper/lib/index.esm'
|
||||
import ToolbarItemContainer from '../toolbar-item-container/index.vue'
|
||||
import custom from '../../../../assets/icon/telephone-icon.svg'
|
||||
import videoIcon from '../../../../assets/icon/video-icon.svg'
|
||||
import { isUniFrameWork } from '../../../../utils/env'
|
||||
import { computed, ref } from 'vue'
|
||||
import { type IConversationModel } from '@tencentcloud/chat-uikit-engine-lite'
|
||||
import ToolbarItemContainer from '../toolbar-item-container/index.vue'
|
||||
import custom from '../../../../assets/icon/telephone-icon.svg'
|
||||
import videoIcon from '../../../../assets/icon/video-icon.svg'
|
||||
import { isUniFrameWork } from '../../../../utils/env'
|
||||
import { computed, ref } from 'vue'
|
||||
import { type IConversationModel } from '@tencentcloud/chat-uikit-engine-lite'
|
||||
import { navigateTo } from '../../../../../utils/router'
|
||||
|
||||
// CallLib.init({});
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
/** 通话状态: 0 语音 1 视频 */
|
||||
type?: '0' | '1'
|
||||
/** 信息数据 */
|
||||
currentConversation?: IConversationModel
|
||||
}>(),
|
||||
{
|
||||
type: '0',
|
||||
currentConversation: () => ({} as IConversationModel)
|
||||
}
|
||||
)
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
/** 通话状态: 0 语音 1 视频 */
|
||||
type?: '0' | '1'
|
||||
/** 信息数据 */
|
||||
currentConversation?: IConversationModel
|
||||
}>(),
|
||||
{
|
||||
type: '0',
|
||||
currentConversation: () => ({} as IConversationModel)
|
||||
}
|
||||
)
|
||||
/** 语音通话状态 */
|
||||
const isType = computed(() => props.type === '0')
|
||||
|
||||
const evaluateIcon = isType.value ? custom : videoIcon
|
||||
|
||||
const emits = defineEmits(['onDialogPopupShowOrHide'])
|
||||
|
||||
const container = ref()
|
||||
const closeDialog = () => {
|
||||
container?.value?.toggleDialogDisplay(false)
|
||||
}
|
||||
|
||||
|
||||
/** 语音通话状态 */
|
||||
const isType = computed(() => props.type === '0')
|
||||
const onDialogShow = () => {
|
||||
console.log('弹出窗口', props.currentConversation)
|
||||
const data = props.currentConversation.userProfile
|
||||
emits('onDialogPopupShowOrHide', true)
|
||||
|
||||
const evaluateIcon = isType.value ? custom : videoIcon
|
||||
if (isType.value) {
|
||||
navigateTo('/pages/room/incom', {
|
||||
type: 'call',
|
||||
userID: data.userID
|
||||
})
|
||||
} else {
|
||||
navigateTo('/pages/room/room')
|
||||
}
|
||||
}
|
||||
|
||||
const emits = defineEmits(['onDialogPopupShowOrHide'])
|
||||
const onDialogClose = () => {
|
||||
console.log('关闭窗口')
|
||||
emits('onDialogPopupShowOrHide', false)
|
||||
}
|
||||
|
||||
const container = ref()
|
||||
const closeDialog = () => {
|
||||
container?.value?.toggleDialogDisplay(false)
|
||||
}
|
||||
|
||||
const onDialogShow = () => {
|
||||
console.log('弹出窗口', isType.value)
|
||||
console.log('弹出窗口', props.currentConversation)
|
||||
let targetId = props.currentConversation.userProfile.userID
|
||||
// emits('onDialogPopupShowOrHide', true)
|
||||
callOut('single', isType.value ? 'audio' : 'video', targetId)
|
||||
}
|
||||
|
||||
function callOut(callSelect, mediaSelect, targetId) {
|
||||
console.log('callSelect: ', callSelect)
|
||||
console.log('mediaSelect: ', mediaSelect)
|
||||
console.log('targetId: ', targetId)
|
||||
//单聊音频
|
||||
if (callSelect === 'single' && mediaSelect === 'audio') {
|
||||
if (targetId === '') {
|
||||
uni.showToast({
|
||||
title: '请输入对方ID',
|
||||
icon: 'error',
|
||||
duration: 2000
|
||||
})
|
||||
return
|
||||
}
|
||||
callMsg(mediaSelect, targetId, callSelect)
|
||||
} else if (callSelect === 'single' && mediaSelect === 'video') {
|
||||
if (targetId === '') {
|
||||
uni.showToast({
|
||||
title: '请输入对方ID',
|
||||
icon: 'error',
|
||||
duration: 2000
|
||||
})
|
||||
return
|
||||
}
|
||||
//单聊视频
|
||||
callMsg(mediaSelect, targetId, callSelect)
|
||||
}
|
||||
}
|
||||
|
||||
function callMsg(mediaSelect, targetId, callSelect) {
|
||||
console.log(targetId)
|
||||
console.log(mediaSelect)
|
||||
uni.setStorageSync('room-parameters', {
|
||||
callType: 'out',
|
||||
mediaType: mediaSelect,
|
||||
targetId: targetId,
|
||||
callSelect: callSelect
|
||||
})
|
||||
uni.navigateTo({
|
||||
url: '/pages/room/room'
|
||||
})
|
||||
}
|
||||
|
||||
const onDialogClose = () => {
|
||||
console.log('关闭窗口')
|
||||
emits('onDialogPopupShowOrHide', false)
|
||||
}
|
||||
|
||||
const onDial = () => {
|
||||
const data = props.currentConversation.userProfile
|
||||
// data.userID
|
||||
CallLib.enableMicrophone(true)
|
||||
CallLib.startSingleCall(data.userID, 0, '邀请您进行语音通话')
|
||||
}
|
||||
const onDial = () => {
|
||||
const data = props.currentConversation.userProfile
|
||||
// data.userID
|
||||
// CallLib.enableMicrophone(true)
|
||||
// CallLib.startSingleCall(data.userID, 0, '邀请您进行语音通话')
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- needBottomPopup -->
|
||||
<ToolbarItemContainer
|
||||
ref="container"
|
||||
needBottomPopup
|
||||
:iconFile="evaluateIcon"
|
||||
:iconWidth="isUniFrameWork ? '34px' : '20px'"
|
||||
:iconHeight="isUniFrameWork ? '34px' : '20px'"
|
||||
@@ -110,7 +72,7 @@
|
||||
@onDialogShow="onDialogShow"
|
||||
@onDialogClose="onDialogClose"
|
||||
>
|
||||
<view class="box-index">
|
||||
<!-- <view class="box-index">
|
||||
<view class="top-icon">
|
||||
<uni-icons
|
||||
type="back"
|
||||
@@ -132,7 +94,18 @@
|
||||
>
|
||||
接听
|
||||
</button>
|
||||
</view>
|
||||
|
||||
<button
|
||||
@click.stop="
|
||||
() => {
|
||||
CallLib.enableMicrophone(true)
|
||||
CallLib.hangup()
|
||||
}
|
||||
"
|
||||
>
|
||||
挂点
|
||||
</button>
|
||||
</view> -->
|
||||
</ToolbarItemContainer>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -10,10 +10,11 @@ export const useAuthUser = () => {
|
||||
const tokenStore = useTokenStore()
|
||||
|
||||
// 响应式状态(state & getters)
|
||||
const { userInfo, tencentUserSig, fontSizeData, integralData } = storeToRefs(userStore)
|
||||
const { imEngine, userInfo, tencentUserSig, fontSizeData, integralData } = storeToRefs(userStore)
|
||||
const { token } = storeToRefs(tokenStore)
|
||||
|
||||
return {
|
||||
imEngine,
|
||||
integralData,
|
||||
userInfo,
|
||||
tencentUserSig,
|
||||
|
||||
31
pages.json
31
pages.json
@@ -39,14 +39,14 @@
|
||||
{
|
||||
"path": "TUIKit/components/TUIChat/video-play",
|
||||
"style": {
|
||||
"navigationBarTitleText": "腾讯云 IM",
|
||||
"navigationBarTitleText": "",
|
||||
"navigationBarBackgroundColor": "#EBF0F6"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "TUIKit/components/TUIChat/web-view",
|
||||
"style": {
|
||||
"navigationBarTitleText": "腾讯云 IM",
|
||||
"navigationBarTitleText": "",
|
||||
"navigationBarBackgroundColor": "#EBF0F6"
|
||||
}
|
||||
},
|
||||
@@ -340,7 +340,7 @@
|
||||
{
|
||||
"path": "pages/shop-together/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "拼团"
|
||||
"navigationBarTitleText": "购买记录"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -441,17 +441,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/room/room",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText": "Room",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle":"custom",
|
||||
"gestureBack":"NO"
|
||||
}
|
||||
|
||||
},
|
||||
{
|
||||
"path": "pages/room/room",
|
||||
"style": {
|
||||
"navigationBarTitleText": "拨打电话",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/room/incom",
|
||||
"style": {
|
||||
"navigationBarTitleText": "拨打视频",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
// #endif
|
||||
// #ifdef H5
|
||||
{
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -11,7 +11,7 @@
|
||||
{ name: '公司介绍', icon: 'company' },
|
||||
{ name: '朋友圈', icon: 'circle' },
|
||||
{ name: '线上商城', icon: 'mall' },
|
||||
{ name: '我的拼团伙伴', icon: 'team' },
|
||||
{ name: '购买记录', icon: 'team' },
|
||||
{ name: '项目入口', icon: 'project' },
|
||||
{ name: '直播列表', icon: 'liveStream' }
|
||||
]
|
||||
|
||||
@@ -160,7 +160,10 @@
|
||||
})
|
||||
|
||||
onLoad(async e => {
|
||||
// groupId
|
||||
groupId.value = e?.groupId || ''
|
||||
console.log(e?.groupId, '===')
|
||||
formData.startGroup = !!e?.groupId
|
||||
await getData(e.productId)
|
||||
})
|
||||
</script>
|
||||
@@ -267,6 +270,7 @@
|
||||
</view>
|
||||
|
||||
<view
|
||||
v-if="groupId"
|
||||
class="pay-way-item"
|
||||
@click="formData.startGroup = !formData.startGroup"
|
||||
>
|
||||
|
||||
@@ -184,7 +184,7 @@
|
||||
"
|
||||
/>
|
||||
</view>
|
||||
<button
|
||||
<!-- <button
|
||||
v-if="item.showDate"
|
||||
@click="
|
||||
navigateTo('/pages/mall/confirm-order', {
|
||||
@@ -194,7 +194,7 @@
|
||||
"
|
||||
>
|
||||
去拼单
|
||||
</button>
|
||||
</button> -->
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -12,9 +12,11 @@
|
||||
} from '@/api/my-index'
|
||||
import { useUI } from '@/utils/use-ui'
|
||||
import { useAuthUser } from '@/composables/useAuthUser'
|
||||
import { useUserStore } from '../../stores/user'
|
||||
|
||||
const { showToast, showDialog } = useUI()
|
||||
const { integralData } = useAuthUser()
|
||||
const { getIntegral } = useUserStore()
|
||||
|
||||
const tixian = ref(null)
|
||||
const popup = ref(null)
|
||||
@@ -120,6 +122,7 @@
|
||||
}
|
||||
tixian.value.close()
|
||||
await addUserWithdraw(data)
|
||||
await getIntegral()
|
||||
await showToast(`提现成功`, 'success')
|
||||
navigateBack()
|
||||
} catch (error) {
|
||||
|
||||
402
pages/room/incom.vue
Normal file
402
pages/room/incom.vue
Normal file
@@ -0,0 +1,402 @@
|
||||
<script setup>
|
||||
import * as CallLib from '@/uni_modules/RongCloud-CallWrapper/lib/index'
|
||||
import { ref, watch } from 'vue'
|
||||
import { onLoad } from '@dcloudio/uni-app'
|
||||
import { TUIUserService } from '@tencentcloud/chat-uikit-engine-lite'
|
||||
import { useUI } from '../../utils/use-ui'
|
||||
import { navigateBack } from '../../utils/router'
|
||||
|
||||
CallLib.init({})
|
||||
const { showLoading, hideLoading } = useUI()
|
||||
const callBackground = ref('/static/images/public/random2.png')
|
||||
/** 呼叫用户信息 */
|
||||
const callerInfo = ref({})
|
||||
/** 通话状态 */
|
||||
const isRinging = ref(true)
|
||||
/** 控制按钮状态 */
|
||||
const activeBtn = ref(null)
|
||||
/**
|
||||
* 拨打状态
|
||||
* call: 发起呼叫
|
||||
* answer: 接听
|
||||
* dialogue: 对话中
|
||||
*/
|
||||
const callState = ref('')
|
||||
|
||||
CallLib.onCallReceived(res => {
|
||||
console.log(
|
||||
'Engine:OnCallReceived=>' + '监听通话呼入, 目标id=>',
|
||||
res.data.targetId
|
||||
)
|
||||
})
|
||||
|
||||
CallLib.onCallOutgoing(res => {
|
||||
console.log(
|
||||
'主叫端拨出电话后,通过回调 onCallOutgoing,通知当前 call 的详细信息',
|
||||
res
|
||||
)
|
||||
})
|
||||
|
||||
CallLib.onCallConnected(res => {
|
||||
console.log(res)
|
||||
console.log(
|
||||
'Engine:OnCallConnected=>' +
|
||||
'已建立通话通话接通时,通过回调 onCallConnected 通知当前 call 的详细信息',
|
||||
res
|
||||
)
|
||||
})
|
||||
|
||||
CallLib.onRemoteUserJoined(res => {
|
||||
console.log(
|
||||
'Engine:OnRemoteUserJoined=>' +
|
||||
'主叫端拨出电话,被叫端收到请求后,加入通话,被叫端Id为=>',
|
||||
res.data.userId
|
||||
)
|
||||
})
|
||||
|
||||
/** 挂断电话 */
|
||||
const isDisconnected = ref(true)
|
||||
CallLib.onCallDisconnected(res => {
|
||||
console.log(
|
||||
'Engine:OnCallDisconnected=>' + '挂断成功, 挂断原因=>',
|
||||
res.data.reason
|
||||
)
|
||||
isDisconnected.value = false
|
||||
})
|
||||
|
||||
watch(
|
||||
() => isDisconnected.value,
|
||||
v => {
|
||||
navigateBack()
|
||||
}
|
||||
)
|
||||
|
||||
CallLib.onRemoteUserRinging(res => {
|
||||
console.log(
|
||||
'主叫端拨出电话,被叫端收到请求,发出振铃响应时触发,对端Id为=>',
|
||||
res.data.userId
|
||||
)
|
||||
})
|
||||
|
||||
CallLib.onError(res => {
|
||||
console.log('通话过程中,发生异常,异常原因=>', res.data.reason)
|
||||
})
|
||||
|
||||
/** 按钮状态 */
|
||||
const cutFn = show => {
|
||||
if (show) {
|
||||
// 接听电话 dialogue
|
||||
CallLib.enableMicrophone(true)
|
||||
CallLib.accept()
|
||||
callState.value = 'dialogue'
|
||||
} else {
|
||||
//取消接听,返回上一页
|
||||
CallLib.hangup()
|
||||
navigateBack()
|
||||
}
|
||||
}
|
||||
|
||||
onLoad(async e => {
|
||||
callState.value = e.type
|
||||
console.log(e.type)
|
||||
showLoading()
|
||||
const res = await TUIUserService.getUserProfile({
|
||||
userIDList: [e.userID]
|
||||
})
|
||||
hideLoading()
|
||||
callerInfo.value = res.data[0]
|
||||
if (e.type === 'call') {
|
||||
CallLib.enableMicrophone(true)
|
||||
CallLib.startSingleCall(callerInfo.value.userID, 0, 'answer')
|
||||
}
|
||||
console.log('===好友信息', res)
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 来电接听界面 -->
|
||||
<view class="incoming-call">
|
||||
<!-- 背景模糊层 -->
|
||||
<view class="blur-background" v-if="callBackground">
|
||||
<image
|
||||
:src="callBackground"
|
||||
mode="aspectFill"
|
||||
class="bg-image"
|
||||
></image>
|
||||
<view class="bg-overlay"></view>
|
||||
</view>
|
||||
|
||||
<!-- 主内容区 -->
|
||||
<view class="caller-info">
|
||||
<view class="caller-avatar-container">
|
||||
<view class="caller-avatar" :class="{ 'avatar-ring': isRinging }">
|
||||
<image
|
||||
v-if="callerInfo?.avatar"
|
||||
:src="callerInfo?.avatar"
|
||||
class="avatar-image"
|
||||
></image>
|
||||
<uni-icons
|
||||
v-else
|
||||
type="contact-filled"
|
||||
size="50"
|
||||
color="#fff"
|
||||
></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
<text class="caller-name">
|
||||
{{ callerInfo?.nick || callerInfo?.userID }}
|
||||
</text>
|
||||
<text class="call-type">
|
||||
{{ callState === 'call' ? '语音呼叫中...' : '对话中...' }}
|
||||
</text>
|
||||
<!-- <text class="call-status">未接听</text> -->
|
||||
</view>
|
||||
|
||||
<!-- 控制按钮 -->
|
||||
<view class="incoming-controls">
|
||||
<view class="incoming-control" @click="cutFn(false)">
|
||||
<view
|
||||
class="call-btn decline-btn"
|
||||
:class="{ 'btn-active': activeBtn === 'decline' }"
|
||||
>
|
||||
<uni-icons type="closeempty" size="32" color="#fff"></uni-icons>
|
||||
</view>
|
||||
<text class="btn-text">拒绝</text>
|
||||
</view>
|
||||
|
||||
<view
|
||||
v-if="callState === 'answer'"
|
||||
class="incoming-control"
|
||||
@click="cutFn(true)"
|
||||
>
|
||||
<view
|
||||
class="call-btn accept-btn"
|
||||
:class="{ 'btn-active': activeBtn === 'accept' }"
|
||||
>
|
||||
<uni-icons
|
||||
type="checkmarkempty"
|
||||
size="28"
|
||||
color="#fff"
|
||||
></uni-icons>
|
||||
</view>
|
||||
<text class="btn-text">接听</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.incoming-call {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 9999;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
background-color: #000;
|
||||
|
||||
.blur-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
|
||||
.bg-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
filter: blur(20px);
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.bg-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
.caller-info {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding-top: 100rpx;
|
||||
z-index: 1;
|
||||
|
||||
.caller-avatar-container {
|
||||
position: relative;
|
||||
margin-bottom: 40rpx;
|
||||
|
||||
.caller-avatar {
|
||||
width: 180rpx;
|
||||
height: 180rpx;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, #1aad19, #129611);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
|
||||
.avatar-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
&.avatar-ring {
|
||||
animation: ringPulse 1.5s infinite;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.caller-name {
|
||||
font-size: 48rpx;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.call-type {
|
||||
font-size: 32rpx;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.call-status {
|
||||
font-size: 28rpx;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.call-timer {
|
||||
margin-top: 30rpx;
|
||||
padding: 10rpx 30rpx;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 30rpx;
|
||||
|
||||
.timer-text {
|
||||
font-size: 32rpx;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.incoming-controls {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
padding: 80rpx 100rpx 120rpx;
|
||||
z-index: 1;
|
||||
|
||||
.incoming-control {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
.call-btn {
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 20rpx;
|
||||
transition: all 0.2s;
|
||||
|
||||
&.decline-btn {
|
||||
background-color: #f43f3b;
|
||||
|
||||
&.btn-active {
|
||||
transform: scale(0.9);
|
||||
background-color: #d93632;
|
||||
}
|
||||
}
|
||||
|
||||
&.accept-btn {
|
||||
background-color: #07c160;
|
||||
|
||||
&.btn-active {
|
||||
transform: scale(0.9);
|
||||
background-color: #06ad56;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-text {
|
||||
font-size: 28rpx;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.action-bar {
|
||||
position: absolute;
|
||||
bottom: 60rpx;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
padding: 0 60rpx;
|
||||
z-index: 1;
|
||||
|
||||
.action-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
.action-icon {
|
||||
width: 100rpx;
|
||||
height: 100rpx;
|
||||
border-radius: 50%;
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 20rpx;
|
||||
transition: all 0.3s;
|
||||
|
||||
&.active {
|
||||
background-color: rgba(255, 255, 255, 0.4);
|
||||
}
|
||||
}
|
||||
|
||||
.action-text {
|
||||
font-size: 24rpx;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes ringPulse {
|
||||
0% {
|
||||
box-shadow: 0 0 0 0 rgba(26, 173, 25, 0.4);
|
||||
}
|
||||
|
||||
70% {
|
||||
box-shadow: 0 0 0 30rpx rgba(26, 173, 25, 0);
|
||||
}
|
||||
|
||||
100% {
|
||||
box-shadow: 0 0 0 0 rgba(26, 173, 25, 0);
|
||||
}
|
||||
}
|
||||
|
||||
/* 响应式调整 */
|
||||
@media (max-height: 600px) {
|
||||
.incoming-controls {
|
||||
padding: 40rpx 100rpx 80rpx !important;
|
||||
}
|
||||
|
||||
.action-bar {
|
||||
bottom: 40rpx !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -1,119 +1,102 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<!-- 单人视频 -->
|
||||
<view v-if="users.length<=2">
|
||||
<RongCloud-Call-RCUniCallView class="bigVideoView"
|
||||
:style="{width:windowWidth+'px',height:windowHeight+'px'}" ref="bigVideoView">
|
||||
</RongCloud-Call-RCUniCallView>
|
||||
<RongCloud-Call-RCUniCallView class="smallVideoView" :style="{width:200+'upx',height:200+'upx'}"
|
||||
ref="smallVideoView">
|
||||
</RongCloud-Call-RCUniCallView>
|
||||
</view>
|
||||
<!-- 多人视频 -->
|
||||
<view v-else>
|
||||
<RongCloud-Call-RCUniCallView class="bigVideoView" :style="{width:windowWidth+'px',height:300+'px'}"
|
||||
ref="bigVideoView">
|
||||
</RongCloud-Call-RCUniCallView>
|
||||
<view class="smallViews">
|
||||
<RongCloud-Call-RCUniCallView v-for="(item,index) in viewArr" :key="item.userId" class="smallView"
|
||||
:ref="item.userId">
|
||||
</RongCloud-Call-RCUniCallView>
|
||||
</view>
|
||||
</view>
|
||||
<view class="nav">
|
||||
<text class="nav-com" v-if="callWay === 1" @click="isMark=true">
|
||||
邀请
|
||||
</text>
|
||||
<text class="nav-com" @click="closeCameraCur">
|
||||
{{curCamera?'关闭':'开启'}}摄像头
|
||||
</text>
|
||||
<text class="nav-com" @click="switchCamera">
|
||||
切换摄像头
|
||||
</text>
|
||||
<text class="nav-com" @click="microphone">
|
||||
{{isMicrophone?'关闭':'开启'}}麦克风
|
||||
</text>
|
||||
<text class="nav-com" @click="enableSpeaker">
|
||||
{{isEnableSpeaker?'关闭':'开启'}}扬声器
|
||||
</text>
|
||||
<text class="nav-com" v-if="mediaTypeCur === 'video'" @click.stop="isBeauty=!isBeauty">
|
||||
美颜
|
||||
</text>
|
||||
</view>
|
||||
<view class="container" :style="{width:windowWidth+'px'}">
|
||||
<text class="hangup" @click="hangup">挂断 </text>
|
||||
<text v-if="mediaTypeCur === 'video' " class="hangup" @click="changeMediaType">切换语音 </text>
|
||||
</view>
|
||||
<view class="box-mark" v-if="isMark" :style="{width:windowWidth+'px',height:windowHeight+'px'}" @click.stop="">
|
||||
<view class="box-cen">
|
||||
<text class="box-des">被邀请者ID:</text>
|
||||
<view class="box-bot">
|
||||
<input v-model="inviteUsersIds" ref="inviteInput" class="box-input" type="text"
|
||||
placeholder="请输入被邀请者ID">
|
||||
<text class="box-tit">必填;需加入群后,方可收到邀请,多个userId用英文半角逗号分开</text>
|
||||
</view>
|
||||
<view class="box-btns">
|
||||
<button class="box-btn" type="default" @click="inviteUsers(false)">取消</button>
|
||||
<button class="box-btn" type="default" @click="inviteUsers(true)">确定</button>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="users.length <= 2">
|
||||
<RongCloud-Call-RCUniCallView
|
||||
class="bigVideoView"
|
||||
:style="{
|
||||
width: windowWidth + 'px',
|
||||
height: windowHeight + 'px'
|
||||
}"
|
||||
ref="bigVideoView"
|
||||
></RongCloud-Call-RCUniCallView>
|
||||
<RongCloud-Call-RCUniCallView
|
||||
class="smallVideoView"
|
||||
:style="{ width: 200 + 'upx', height: 200 + 'upx' }"
|
||||
ref="smallVideoView"
|
||||
></RongCloud-Call-RCUniCallView>
|
||||
</view>
|
||||
|
||||
<view class="beauty" v-if="isBeauty" :style="{width:windowWidth+'px'}" @click.stop="">
|
||||
<view class="beauty-btn">
|
||||
<view class="change-btn">
|
||||
<text class="ch-tit">美颜</text><text class="switch-btn"
|
||||
@click="switchChange">{{isChecked?'开启':'关闭'}}</text>
|
||||
</view>
|
||||
<view class="close-btn">
|
||||
<text class="close-tit" @click="isBeauty=false">X</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="beauty-view">
|
||||
<view v-if="curIndex === '0'" class="beauty-tab filte-view">
|
||||
<view class="tab-item" v-for="(item) in filteArr" :key="item.id" @click="cutFilte(item.id)"
|
||||
:class="{current: item.id === curFilte}">
|
||||
<text>{{item.name}}</text>
|
||||
<!-- 底部按钮 -->
|
||||
<view class="nav-box">
|
||||
<view class="control-row">
|
||||
<view class="icon-item" @click="microphone">
|
||||
<view class="control-icon">
|
||||
<uni-icons
|
||||
:type="isMicrophone ? 'mic' : 'micoff'"
|
||||
size="24"
|
||||
color="#fff"
|
||||
></uni-icons>
|
||||
</view>
|
||||
<text class="btn-text">
|
||||
{{ isMicrophone ? '关闭' : '开启' }}麦克风
|
||||
</text>
|
||||
</view>
|
||||
<!-- 美白 -->
|
||||
<view v-if="curIndex === '1'" class="white-view com-view">
|
||||
<slider :value="whiteVal" min="0" max="9" @change="whiteChange" show-value />
|
||||
<view class="icon-item" @click="closeCameraCur">
|
||||
<view class="control-icon">
|
||||
<uni-icons
|
||||
:type="curCamera ? 'eye' : 'eye-slash'"
|
||||
size="24"
|
||||
color="#fff"
|
||||
></uni-icons>
|
||||
</view>
|
||||
<text class="btn-text">
|
||||
{{ curCamera ? '关闭' : '开启' }}摄像头
|
||||
</text>
|
||||
</view>
|
||||
<!-- 红润 -->
|
||||
<view v-if="curIndex === '2'" class="ruddy-view com-view">
|
||||
<slider :value="ruddyVal" min="0" max="9" @change="ruddyChange" show-value />
|
||||
</view>
|
||||
<!-- 磨皮 -->
|
||||
<view v-if="curIndex === '3'" class="buffing-view com-view">
|
||||
<slider :value="buffingVal" min="0" max="9" @change="buffingChange" show-value />
|
||||
</view>
|
||||
<!-- 亮度 -->
|
||||
<view v-if="curIndex === '4'" class="brightness-view com-view">
|
||||
<slider :value="brightnessVal" min="0" max="9" @change="brightnessChange" show-value />
|
||||
<view class="icon-item" @click="enableSpeaker">
|
||||
<view class="control-icon">
|
||||
<uni-icons
|
||||
:type="isEnableSpeaker ? 'sound' : 'sound'"
|
||||
size="24"
|
||||
color="#fff"
|
||||
></uni-icons>
|
||||
</view>
|
||||
<text class="btn-text">
|
||||
{{ isEnableSpeaker ? '关闭' : '开启' }}扬声器
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="beauty-tab">
|
||||
<view class="tab-item" v-for="(item) in tabArr" :key="item.id" @click="curIndex = item.id"
|
||||
:class="{current: item.id === curIndex}">
|
||||
<text>{{item.text}}</text>
|
||||
<view class="control-row" :style="{ width: windowWidth + 'px' }">
|
||||
<view class="icon-item" @click="changeMediaType">
|
||||
<view class="control-icon">
|
||||
<uni-icons
|
||||
:type="mediaTypeCur === 'video' ? 'phone' : 'videocam'"
|
||||
size="24"
|
||||
color="#fff"
|
||||
></uni-icons>
|
||||
</view>
|
||||
<text class="btn-text">
|
||||
{{ mediaTypeCur === 'video' ? '切换语音' : '切换视频' }}
|
||||
</text>
|
||||
</view>
|
||||
<view class="hangup-btn icon-item" @click="hangup">
|
||||
<view class="hangup-icon control-icon">
|
||||
<uni-icons type="phone" size="28" color="#fff"></uni-icons>
|
||||
</view>
|
||||
<text class="hangup-text">挂断</text>
|
||||
</view>
|
||||
<view class="icon-item" @click="switchCamera">
|
||||
<view class="control-icon">
|
||||
<uni-icons type="refresh" size="24" color="#fff"></uni-icons>
|
||||
</view>
|
||||
<text class="btn-text">翻转</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import * as call from "@/uni_modules/RongCloud-CallWrapper/lib/index"
|
||||
import * as call from '@/uni_modules/RongCloud-CallWrapper/lib/index'
|
||||
// import * as im from "@/uni_modules/RongCloud-IMWrapper/js_sdk/index"
|
||||
// import RCBeautyEngine from "@/uni_modules/RongCloud-BeautyWrapper/lib/RCBeautyEngine"
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
mediaType: "video",
|
||||
callType: "out",
|
||||
mediaType: 'video',
|
||||
callType: 'out',
|
||||
callWay: 0, //呼叫方式 0 单聊 1 群聊
|
||||
targetId: "",
|
||||
targetId: '',
|
||||
bottomHeight: 0,
|
||||
isConnected: false,
|
||||
isSelf: false,
|
||||
@@ -134,44 +117,6 @@
|
||||
inviteUsersIds: '',
|
||||
mediaTypeCur: 'audio',
|
||||
isBeauty: false,
|
||||
tabArr: [{
|
||||
id: '0',
|
||||
text: '滤镜'
|
||||
},
|
||||
{
|
||||
id: '1',
|
||||
text: '美白'
|
||||
},
|
||||
{
|
||||
id: '2',
|
||||
text: '红润'
|
||||
},
|
||||
{
|
||||
id: '3',
|
||||
text: '磨皮'
|
||||
},
|
||||
{
|
||||
id: '4',
|
||||
text: '亮度'
|
||||
},
|
||||
],
|
||||
filteArr: [{
|
||||
id: 0,
|
||||
name: '原画'
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
name: '唯美'
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: '清新'
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: '浪漫'
|
||||
}
|
||||
],
|
||||
curIndex: '0',
|
||||
curFilte: 0,
|
||||
whiteVal: 0,
|
||||
@@ -181,201 +126,272 @@
|
||||
isChecked: false
|
||||
}
|
||||
},
|
||||
onLoad: function() {
|
||||
console.log("来room页面了?");
|
||||
var _this = this;
|
||||
onLoad: function () {
|
||||
var _this = this
|
||||
uni.getStorage({
|
||||
key: "room-parameters",
|
||||
success: (res) => {
|
||||
this.mediaType = res.data.mediaType;
|
||||
this.callType = res.data.callType ? res.data.callType : 'in';
|
||||
this.groupId = res.data.groupId ? res.data.groupId : '';
|
||||
this.userIds = res.data.userIds ? res.data.userIds : '';
|
||||
key: 'room-parameters',
|
||||
success: res => {
|
||||
this.mediaType = res.data.mediaType
|
||||
this.callType = res.data.callType ? res.data.callType : 'in'
|
||||
this.groupId = res.data.groupId ? res.data.groupId : ''
|
||||
this.userIds = res.data.userIds ? res.data.userIds : ''
|
||||
if (this.callType === 'out') {
|
||||
console.log('呼出out')
|
||||
this.targetId = res.data.targetId;
|
||||
this.startCall();
|
||||
this.targetId = res.data.targetId
|
||||
this.startCall()
|
||||
} else {
|
||||
console.log('呼入接受')
|
||||
this.accept();
|
||||
this.accept()
|
||||
}
|
||||
}
|
||||
});
|
||||
})
|
||||
uni.getSystemInfo({
|
||||
success: function(res) {
|
||||
_this.windowWidth = res.windowWidth;
|
||||
_this.windowHeight = res.windowHeight;
|
||||
success: function (res) {
|
||||
_this.windowWidth = res.windowWidth
|
||||
_this.windowHeight = res.windowHeight
|
||||
}
|
||||
})
|
||||
uni.$on('OnCallConnected', this.onCallConnected)
|
||||
uni.$on('OnCallDisconnected', this.onCallDisconnected)
|
||||
// this.initBeautyOpton();
|
||||
this.initBeautyOpton()
|
||||
},
|
||||
beforeDestroy() {
|
||||
uni.$off('OnCallDisconnected');
|
||||
uni.$off('OnCallConnected');
|
||||
uni.$off('OnCallDisconnected')
|
||||
uni.$off('OnCallConnected')
|
||||
},
|
||||
onUnload() {
|
||||
call.hangup();
|
||||
call.hangup()
|
||||
},
|
||||
onHide() {
|
||||
const session = call.getCurrentCallSession();
|
||||
const session = call.getCurrentCallSession()
|
||||
if (session) {
|
||||
call.hangup();
|
||||
call.hangup()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
changeMediaType() {
|
||||
this.mediaTypeCur = 'audio';
|
||||
call.changeMediaType(0);
|
||||
if (this.mediaTypeCur == 'video') {
|
||||
this.mediaTypeCur = 'audio'
|
||||
} else {
|
||||
this.mediaTypeCur = 'video'
|
||||
}
|
||||
call.changeMediaType(0)
|
||||
},
|
||||
inviteUsers(flag) {
|
||||
if (flag) {
|
||||
if (this.inviteUsersIds === '') {
|
||||
uni.showToast({
|
||||
title: "请输入被邀请者ID",
|
||||
icon: "error",
|
||||
title: '请输入被邀请者ID',
|
||||
icon: 'error',
|
||||
duration: 2000
|
||||
})
|
||||
return;
|
||||
return
|
||||
}
|
||||
let userIdsArr = this.inviteUsersIds.split(',');
|
||||
call.inviteUsers(userIdsArr, []);
|
||||
let userIdsArr = this.inviteUsersIds.split(',')
|
||||
call.inviteUsers(userIdsArr, [])
|
||||
}
|
||||
this.$refs.inviteInput.blur();
|
||||
this.isMark = false;
|
||||
this.$refs.inviteInput.blur()
|
||||
this.isMark = false
|
||||
},
|
||||
switchVideo() {
|
||||
this.isMe = !this.isMe;
|
||||
let session = call.getCurrentCallSession();
|
||||
this.isMe = !this.isMe
|
||||
let session = call.getCurrentCallSession()
|
||||
if (this.isMe) {
|
||||
switch (uni.getSystemInfoSync().platform) {
|
||||
case 'android':
|
||||
call.setVideoView(session.targetId, this.$refs.bigVideoView.ref, 0, false);
|
||||
call.setVideoView(session.mine.userId, this.$refs.smallVideoView.ref, 0, true);
|
||||
break;
|
||||
call.setVideoView(
|
||||
session.targetId,
|
||||
this.$refs.bigVideoView.ref,
|
||||
0,
|
||||
false
|
||||
)
|
||||
call.setVideoView(
|
||||
session.mine.userId,
|
||||
this.$refs.smallVideoView.ref,
|
||||
0,
|
||||
true
|
||||
)
|
||||
break
|
||||
case 'ios':
|
||||
call.setVideoView(session.targetId, this.$refs.bigVideoView.ref, 0);
|
||||
call.setVideoView(session.mine.userId, this.$refs.smallVideoView.ref, 0);
|
||||
break;
|
||||
call.setVideoView(
|
||||
session.targetId,
|
||||
this.$refs.bigVideoView.ref,
|
||||
0
|
||||
)
|
||||
call.setVideoView(
|
||||
session.mine.userId,
|
||||
this.$refs.smallVideoView.ref,
|
||||
0
|
||||
)
|
||||
break
|
||||
default:
|
||||
console.log('运行在开发者工具上')
|
||||
break;
|
||||
break
|
||||
}
|
||||
} else {
|
||||
switch (uni.getSystemInfoSync().platform) {
|
||||
case 'android':
|
||||
call.setVideoView(session.mine.userId, this.$refs.bigVideoView.ref, 0, false);
|
||||
call.setVideoView(session.targetId, this.$refs.smallVideoView.ref, 0, true);
|
||||
break;
|
||||
call.setVideoView(
|
||||
session.mine.userId,
|
||||
this.$refs.bigVideoView.ref,
|
||||
0,
|
||||
false
|
||||
)
|
||||
call.setVideoView(
|
||||
session.targetId,
|
||||
this.$refs.smallVideoView.ref,
|
||||
0,
|
||||
true
|
||||
)
|
||||
break
|
||||
case 'ios':
|
||||
call.setVideoView(session.mine.userId, this.$refs.bigVideoView.ref, 0);
|
||||
call.setVideoView(session.targetId, this.$refs.smallVideoView.ref, 0);
|
||||
break;
|
||||
call.setVideoView(
|
||||
session.mine.userId,
|
||||
this.$refs.bigVideoView.ref,
|
||||
0
|
||||
)
|
||||
call.setVideoView(
|
||||
session.targetId,
|
||||
this.$refs.smallVideoView.ref,
|
||||
0
|
||||
)
|
||||
break
|
||||
default:
|
||||
console.log('运行在开发者工具上')
|
||||
break;
|
||||
break
|
||||
}
|
||||
}
|
||||
},
|
||||
closeCameraCur() {
|
||||
this.curCamera = !this.curCamera;
|
||||
let camera = call.currentCamera();
|
||||
this.curCamera = !this.curCamera
|
||||
let camera = call.currentCamera()
|
||||
call.enableCamera(this.curCamera, camera)
|
||||
},
|
||||
closeCameraBack() {
|
||||
this.backCamera = !this.backCamera;
|
||||
this.backCamera = !this.backCamera
|
||||
call.enableCamera(this.backCamera, 1)
|
||||
},
|
||||
switchCamera() {
|
||||
call.switchCamera();
|
||||
call.switchCamera()
|
||||
},
|
||||
microphone() {
|
||||
this.isMicrophone = !this.isMicrophone;
|
||||
call.enableMicrophone(this.isMicrophone);
|
||||
this.isMicrophone = !this.isMicrophone
|
||||
call.enableMicrophone(this.isMicrophone)
|
||||
},
|
||||
enableSpeaker() {
|
||||
this.isEnableSpeaker = !this.isEnableSpeaker;
|
||||
call.enableSpeaker(this.isEnableSpeaker);
|
||||
this.isEnableSpeaker = !this.isEnableSpeaker
|
||||
call.enableSpeaker(this.isEnableSpeaker)
|
||||
},
|
||||
hangup() {
|
||||
this.isSelf = true;
|
||||
// RCBeautyEngine.resetBeauty();
|
||||
call.hangup();
|
||||
this.isSelf = true
|
||||
call.hangup()
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
})
|
||||
},
|
||||
accept() {
|
||||
call.accept();
|
||||
call.accept()
|
||||
},
|
||||
startCall() {
|
||||
const type = this.mediaType === 'audio' ? 0 : 1;
|
||||
this.mediaTypeCur = this.mediaType;
|
||||
const type = this.mediaType === 'audio' ? 0 : 1
|
||||
this.mediaTypeCur = this.mediaType
|
||||
if (this.targetId.length > 0) {
|
||||
call.enableSpeaker(true);
|
||||
call.startSingleCall(this.targetId, type, null);
|
||||
this.currentCallSession = call.getCurrentCallSession();
|
||||
this.users = this.currentCallSession.users ? this.currentCallSession.users : [];
|
||||
call.enableSpeaker(true)
|
||||
call.startSingleCall(this.targetId, type, null)
|
||||
this.currentCallSession = call.getCurrentCallSession()
|
||||
this.users = this.currentCallSession.users
|
||||
? this.currentCallSession.users
|
||||
: []
|
||||
} else {
|
||||
call.startGroupCall(this.groupId, this.userIds, [], type, '');
|
||||
this.users = this.userIds;
|
||||
call.startGroupCall(this.groupId, this.userIds, [], type, '')
|
||||
this.users = this.userIds
|
||||
|
||||
console.log(this.users);
|
||||
this.currentCallSession = call.getCurrentCallSession();
|
||||
this.users = this.currentCallSession.users ? this.currentCallSession.users : [];
|
||||
console.log(this.users)
|
||||
this.currentCallSession = call.getCurrentCallSession()
|
||||
this.users = this.currentCallSession.users
|
||||
? this.currentCallSession.users
|
||||
: []
|
||||
}
|
||||
let _this = this;
|
||||
let _this = this
|
||||
// im.getCurrentUserId(function(result){
|
||||
// _this.systemInfoSync(result.userId,_this.$refs.bigVideoView.ref,false);
|
||||
// })
|
||||
if (this.currentCallSession) {
|
||||
this.systemInfoSync(this.currentCallSession.mine.userId, this.$refs.bigVideoView.ref, false);
|
||||
this.systemInfoSync(
|
||||
this.currentCallSession.mine.userId,
|
||||
this.$refs.bigVideoView.ref,
|
||||
false
|
||||
)
|
||||
}
|
||||
},
|
||||
|
||||
onCallConnected() {
|
||||
let context = this;
|
||||
console.log('oncallconnected接收了');
|
||||
this.mediaTypeCur = this.mediaType;
|
||||
call.enableSpeaker(true);
|
||||
this.currentCallSession = call.getCurrentCallSession();
|
||||
this.callWay = this.currentCallSession.callType;
|
||||
this.users = this.currentCallSession.users ? this.currentCallSession.users : [];
|
||||
let isHasMine = this.users.findIndex((item) => {
|
||||
return item.userId === this.currentCallSession.mine.userId;
|
||||
});
|
||||
let context = this
|
||||
console.log('oncallconnected接收了')
|
||||
this.mediaTypeCur = this.mediaType
|
||||
call.enableSpeaker(true)
|
||||
this.currentCallSession = call.getCurrentCallSession()
|
||||
this.callWay = this.currentCallSession.callType
|
||||
this.users = this.currentCallSession.users
|
||||
? this.currentCallSession.users
|
||||
: []
|
||||
let isHasMine = this.users.findIndex(item => {
|
||||
return item.userId === this.currentCallSession.mine.userId
|
||||
})
|
||||
if (isHasMine === -1) {
|
||||
this.users.push(this.currentCallSession.mine);
|
||||
this.users.push(this.currentCallSession.mine)
|
||||
}
|
||||
if (this.currentCallSession && this.currentCallSession.users.length > 0) {
|
||||
if (
|
||||
this.currentCallSession &&
|
||||
this.currentCallSession.users.length > 0
|
||||
) {
|
||||
//视频是两个的时候
|
||||
if (this.currentCallSession.users.length <= 2) {
|
||||
setTimeout(() => {
|
||||
this.systemInfoSync(this.currentCallSession.mine.userId, this.$refs.smallVideoView.ref,
|
||||
true);
|
||||
this.viewArr = this.currentCallSession.users.filter((item) => {
|
||||
return item.userId !== this.currentCallSession.mine.userId;
|
||||
});
|
||||
this.viewArr.forEach((itm) => {
|
||||
this.targetId = itm.userId;
|
||||
this.systemInfoSync(itm.userId, this.$refs.bigVideoView.ref, false);
|
||||
});
|
||||
}, 100);
|
||||
|
||||
this.systemInfoSync(
|
||||
this.currentCallSession.mine.userId,
|
||||
this.$refs.smallVideoView.ref,
|
||||
true
|
||||
)
|
||||
this.viewArr = this.currentCallSession.users.filter(
|
||||
item => {
|
||||
return (
|
||||
item.userId !== this.currentCallSession.mine.userId
|
||||
)
|
||||
}
|
||||
)
|
||||
this.viewArr.forEach(itm => {
|
||||
this.targetId = itm.userId
|
||||
this.systemInfoSync(
|
||||
itm.userId,
|
||||
this.$refs.bigVideoView.ref,
|
||||
false
|
||||
)
|
||||
})
|
||||
}, 100)
|
||||
} else {
|
||||
// 视频超过三个
|
||||
this.$nextTick(() => {
|
||||
this.systemInfoSync(this.currentCallSession.mine.userId, this.$refs.bigVideoView.ref,
|
||||
false);
|
||||
this.viewArr = this.currentCallSession.users.filter((item) => {
|
||||
return item.userId !== this.currentCallSession.mine.userId;
|
||||
});
|
||||
this.systemInfoSync(
|
||||
this.currentCallSession.mine.userId,
|
||||
this.$refs.bigVideoView.ref,
|
||||
false
|
||||
)
|
||||
this.viewArr = this.currentCallSession.users.filter(
|
||||
item => {
|
||||
return (
|
||||
item.userId !== this.currentCallSession.mine.userId
|
||||
)
|
||||
}
|
||||
)
|
||||
setTimeout(() => {
|
||||
this.viewArr.forEach((itm) => {
|
||||
this.systemInfoSync(itm.userId, this.$refs[itm.userId][0].ref,
|
||||
false);
|
||||
});
|
||||
this.viewArr.forEach(itm => {
|
||||
this.systemInfoSync(
|
||||
itm.userId,
|
||||
this.$refs[itm.userId][0].ref,
|
||||
false
|
||||
)
|
||||
})
|
||||
}, 100)
|
||||
})
|
||||
}
|
||||
@@ -384,18 +400,18 @@
|
||||
systemInfoSync(userId, ref, isZOrderOnTop) {
|
||||
switch (uni.getSystemInfoSync().platform) {
|
||||
case 'android':
|
||||
call.setVideoView(userId, ref, 0, isZOrderOnTop);
|
||||
break;
|
||||
call.setVideoView(userId, ref, 0, isZOrderOnTop)
|
||||
break
|
||||
case 'ios':
|
||||
call.setVideoView(userId, ref, 0);
|
||||
break;
|
||||
call.setVideoView(userId, ref, 0)
|
||||
break
|
||||
default:
|
||||
console.log('运行在开发者工具上')
|
||||
break;
|
||||
break
|
||||
}
|
||||
},
|
||||
onCallDisconnected() {
|
||||
this.isMe = true;
|
||||
this.isMe = true
|
||||
if (!this.isSelf) {
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
@@ -403,103 +419,89 @@
|
||||
}
|
||||
},
|
||||
switchChange() {
|
||||
this.isChecked = !this.isChecked;
|
||||
this.isChecked = !this.isChecked
|
||||
if (!this.isChecked) {
|
||||
this.reset();
|
||||
this.reset()
|
||||
} else {
|
||||
this.setBeautyOption();
|
||||
this.setBeautyOption()
|
||||
}
|
||||
},
|
||||
//设置美颜
|
||||
setBeautyOption() {
|
||||
let option = {
|
||||
whitenessLevel: this.whiteVal,
|
||||
ruddyLevel: this.ruddyVal,
|
||||
smoothLevel: this.buffingVal,
|
||||
brightLevel: this.brightnessVal
|
||||
}
|
||||
if (this.isChecked) { //开启
|
||||
console.log('设置美颜')
|
||||
// RCBeautyEngine.setBeautyOptions(this.isChecked, option);
|
||||
}
|
||||
},
|
||||
//切换滤镜
|
||||
cutFilte(id) {
|
||||
//切换滤镜打开美颜
|
||||
if (!this.isChecked) {
|
||||
this.isChecked = true;
|
||||
}
|
||||
let option = {
|
||||
whitenessLevel: this.whiteVal,
|
||||
ruddyLevel: this.ruddyVal,
|
||||
smoothLevel: this.buffingVal,
|
||||
brightLevel: this.brightnessVal
|
||||
}
|
||||
//打开滤镜
|
||||
this.curFilte = id;
|
||||
// this.isChecked ? RCBeautyEngine.setBeautyOptions(this.isChecked, option) : '';
|
||||
// RCBeautyEngine.setBeautyFilter(this.curFilte);
|
||||
},
|
||||
//美白
|
||||
whiteChange(e) {
|
||||
console.log('美白', e.detail.value);
|
||||
//打开美颜
|
||||
if (!this.isChecked) {
|
||||
this.isChecked = true;
|
||||
}
|
||||
this.whiteVal = e.detail.value;
|
||||
this.setBeautyOption();
|
||||
},
|
||||
//红润
|
||||
ruddyChange(e) {
|
||||
console.log('红润', e.detail.value);
|
||||
//打开美颜
|
||||
if (!this.isChecked) {
|
||||
this.isChecked = true;
|
||||
}
|
||||
this.ruddyVal = e.detail.value;
|
||||
this.setBeautyOption();
|
||||
},
|
||||
//磨皮
|
||||
buffingChange(e) {
|
||||
console.log('磨皮', e.detail.value);
|
||||
//打开美颜
|
||||
if (!this.isChecked) {
|
||||
this.isChecked = true;
|
||||
}
|
||||
this.buffingVal = e.detail.value;
|
||||
this.setBeautyOption();
|
||||
},
|
||||
//亮度
|
||||
brightnessChange(e) {
|
||||
console.log('亮度', e.detail.value);
|
||||
//打开美颜
|
||||
if (!this.isChecked) {
|
||||
this.isChecked = true;
|
||||
}
|
||||
this.brightnessVal = e.detail.value;
|
||||
this.setBeautyOption();
|
||||
},
|
||||
//重置
|
||||
reset() {
|
||||
// RCBeautyEngine.resetBeauty();
|
||||
// this.initBeautyOpton();
|
||||
},
|
||||
// initBeautyOpton() {
|
||||
// //初始化滤镜
|
||||
// this.curFilte = RCBeautyEngine.getCurrentBeautyFilter();
|
||||
// //初始化美颜参数
|
||||
// let beautyOption = RCBeautyEngine.getCurrentBeautyOptions();
|
||||
// this.whiteVal = beautyOption.whitenessLevel;
|
||||
// this.ruddyVal = beautyOption.ruddyLevel;
|
||||
// this.buffingVal = beautyOption.smoothLevel;
|
||||
// this.brightnessVal = beautyOption.brightLevel;
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.nav-box {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: 99;
|
||||
/* height: 220rpx; */
|
||||
width: 750rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.hangup-btn {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 8rpx;
|
||||
}
|
||||
|
||||
.hangup-icon {
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
background: #ff3b30 !important;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.hangup-text {
|
||||
font-size: 14rpx;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.btn-text {
|
||||
font-size: 14rpx;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.control-row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 40rpx;
|
||||
/* width: 100%; */
|
||||
flex-direction: row;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.icon-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 8rpx;
|
||||
margin: 10rpx;
|
||||
}
|
||||
|
||||
.control-icon {
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
@@ -539,12 +541,6 @@
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.nav {
|
||||
position: fixed;
|
||||
bottom: 200upx;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.camera {
|
||||
background: #ccc;
|
||||
}
|
||||
@@ -555,25 +551,13 @@
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
.hangup {
|
||||
width: 200upx;
|
||||
height: 100upx;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 100upx;
|
||||
background: red;
|
||||
margin-right: 50upx;
|
||||
border-radius: 50upx;
|
||||
}
|
||||
|
||||
.box-mark {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background: rgba(0, 0, 0, .5);
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: 9999;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
@@ -679,7 +663,6 @@
|
||||
background: #ccc;
|
||||
padding-left: 30upx;
|
||||
padding-right: 30upx;
|
||||
|
||||
}
|
||||
|
||||
.beauty-tab {
|
||||
@@ -693,7 +676,8 @@
|
||||
padding-top: 40upx;
|
||||
}
|
||||
|
||||
.filte-view {}
|
||||
.filte-view {
|
||||
}
|
||||
|
||||
.tab-item {
|
||||
width: 100upx;
|
||||
@@ -708,5 +692,6 @@
|
||||
background: yellow;
|
||||
}
|
||||
|
||||
.white-view {}
|
||||
</style>
|
||||
.white-view {
|
||||
}
|
||||
</style>
|
||||
|
||||
BIN
static/images/administrator.png
Normal file
BIN
static/images/administrator.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
560
stores/user.js
560
stores/user.js
@@ -1,332 +1,286 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import {
|
||||
defineStore
|
||||
} from 'pinia'
|
||||
import {
|
||||
getToken,
|
||||
getUserInfoData,
|
||||
setUserInfoData,
|
||||
removeUserInfoData,
|
||||
getSig,
|
||||
setSig,
|
||||
removeSig,
|
||||
getFontSize,
|
||||
setFontSize,
|
||||
removeFontSize
|
||||
getToken,
|
||||
getUserInfoData,
|
||||
setUserInfoData,
|
||||
removeUserInfoData,
|
||||
getSig,
|
||||
setSig,
|
||||
removeSig,
|
||||
getFontSize,
|
||||
setFontSize,
|
||||
removeFontSize
|
||||
} from '@/utils/storage'
|
||||
|
||||
// #ifdef APP-PLUS
|
||||
import {
|
||||
useLoginState
|
||||
} from '@/uni_modules/tuikit-atomic-x/state/LoginState'
|
||||
import * as CallLib from "@/uni_modules/RongCloud-CallWrapper/lib/index"
|
||||
import { useLoginState } from '@/uni_modules/tuikit-atomic-x/state/LoginState'
|
||||
import * as CallLib from '@/uni_modules/RongCloud-CallWrapper/lib/index'
|
||||
import RCIMIWEngine from '@/uni_modules/RongCloud-IMWrapper-V2/js_sdk/RCIMEngine'
|
||||
import permision from "@/js_sdk/wa-permission/permission.js"
|
||||
import {reasonDeal,errorDeal,imCode} from '@/utils/code.js'
|
||||
import { reasonDeal, errorDeal, imCode } from '@/utils/code.js'
|
||||
// #endif
|
||||
// #ifdef H5
|
||||
import {
|
||||
useLoginState
|
||||
} from 'tuikit-atomicx-vue3'
|
||||
import { useLoginState } from 'tuikit-atomicx-vue3'
|
||||
// #endif
|
||||
import {
|
||||
useTokenStore
|
||||
} from './token'
|
||||
import {
|
||||
getUserData,
|
||||
userLogout,
|
||||
updateUserData
|
||||
} from '@/api'
|
||||
import {
|
||||
ref
|
||||
} from 'vue'
|
||||
import {
|
||||
useUI
|
||||
} from '@/utils/use-ui'
|
||||
import {
|
||||
reLaunch
|
||||
} from '@/utils/router'
|
||||
import {
|
||||
getTencentUserSig
|
||||
} from '@/api'
|
||||
import {
|
||||
TUILogin
|
||||
} from '@tencentcloud/tui-core-lite'
|
||||
import {
|
||||
TUIChatEngine
|
||||
} from '@tencentcloud/chat-uikit-engine-lite'
|
||||
import {
|
||||
getUserIntegral
|
||||
} from '@/api/my-index'
|
||||
import {
|
||||
removeFriendList,
|
||||
removeGroupList
|
||||
} from '../utils/storage'
|
||||
import {
|
||||
getRongYunLoginInfo
|
||||
} from '../api'
|
||||
import { useTokenStore } from './token'
|
||||
import { getUserData, userLogout, updateUserData } from '@/api'
|
||||
import { ref } from 'vue'
|
||||
import { useUI } from '@/utils/use-ui'
|
||||
import { reLaunch } from '@/utils/router'
|
||||
import { getTencentUserSig } from '@/api'
|
||||
import { TUILogin } from '@tencentcloud/tui-core-lite'
|
||||
import { TUIChatEngine } from '@tencentcloud/chat-uikit-engine-lite'
|
||||
import { getUserIntegral } from '@/api/my-index'
|
||||
import { removeFriendList, removeGroupList } from '../utils/storage'
|
||||
import { getRongYunLoginInfo } from '../api'
|
||||
|
||||
export const useUserStore = defineStore('user', () => {
|
||||
const {
|
||||
clearToken
|
||||
} = useTokenStore()
|
||||
const {
|
||||
showDialog,
|
||||
showToast
|
||||
} = useUI()
|
||||
const { clearToken } = useTokenStore()
|
||||
const { showDialog, showToast } = useUI()
|
||||
|
||||
const userInfo = ref(
|
||||
getUserInfoData() ? JSON?.parse(getUserInfoData()) : {}
|
||||
)
|
||||
/** 用户字体大小 */
|
||||
const fontSizeData = ref(getFontSize())
|
||||
const userInfo = ref(
|
||||
getUserInfoData() ? JSON?.parse(getUserInfoData()) : {}
|
||||
)
|
||||
/** 用户字体大小 */
|
||||
const fontSizeData = ref(getFontSize())
|
||||
|
||||
/** 腾讯 IM 存储数据 */
|
||||
const tencentUserSig = ref(getSig() ? JSON?.parse(getSig()) : {})
|
||||
/** 腾讯 IM 存储数据 */
|
||||
const tencentUserSig = ref(getSig() ? JSON?.parse(getSig()) : {})
|
||||
|
||||
/** 用户积分数 */
|
||||
const integralData = ref(0)
|
||||
const imEngine = ref(null)
|
||||
/** 用户积分数 */
|
||||
const integralData = ref(0)
|
||||
/** 融云 IM 引擎 */
|
||||
const imEngine = ref(null)
|
||||
|
||||
/**
|
||||
* 获取用户信息(可从缓存或接口)
|
||||
*/
|
||||
const fetchUserInfo = async () => {
|
||||
// 尝试从本地缓存读取
|
||||
const cachedToken = getToken()
|
||||
const cachedUserInfo = getUserInfoData()
|
||||
const cachedSig = getSig()
|
||||
/**
|
||||
* 获取用户信息(可从缓存或接口)
|
||||
*/
|
||||
const fetchUserInfo = async () => {
|
||||
// 尝试从本地缓存读取
|
||||
const cachedToken = getToken()
|
||||
const cachedUserInfo = getUserInfoData()
|
||||
const cachedSig = getSig()
|
||||
|
||||
if (cachedToken && cachedUserInfo) {
|
||||
userInfo.value = JSON.parse(cachedUserInfo)
|
||||
tencentUserSig.value = JSON.parse(cachedSig)
|
||||
loginTencentIM()
|
||||
return
|
||||
}
|
||||
await getIntegral()
|
||||
const res = await getUserData()
|
||||
await setUserInfo(res.data)
|
||||
loginTencentIM()
|
||||
return
|
||||
}
|
||||
if (cachedToken && cachedUserInfo) {
|
||||
userInfo.value = JSON.parse(cachedUserInfo)
|
||||
tencentUserSig.value = JSON.parse(cachedSig)
|
||||
loginTencentIM()
|
||||
return
|
||||
}
|
||||
await getIntegral()
|
||||
const res = await getUserData()
|
||||
await setUserInfo(res.data)
|
||||
loginTencentIM()
|
||||
return
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置用户信息
|
||||
*/
|
||||
const setUserInfo = async data => {
|
||||
const res = await getTencentUserSig()
|
||||
const ryData = await getRongYunLoginInfo()
|
||||
const IM_DATA = {
|
||||
...res.data,
|
||||
...ryData.data
|
||||
}
|
||||
tencentUserSig.value = IM_DATA
|
||||
userInfo.value = data
|
||||
setUserInfoData(data)
|
||||
setSig(IM_DATA)
|
||||
}
|
||||
/**
|
||||
* 设置用户信息
|
||||
*/
|
||||
const setUserInfo = async data => {
|
||||
const res = await getTencentUserSig()
|
||||
const ryData = await getRongYunLoginInfo()
|
||||
const IM_DATA = {
|
||||
...res.data,
|
||||
...ryData.data
|
||||
}
|
||||
tencentUserSig.value = IM_DATA
|
||||
userInfo.value = data
|
||||
setUserInfoData(data)
|
||||
setSig(IM_DATA)
|
||||
}
|
||||
|
||||
/** 获取用户积分 */
|
||||
const getIntegral = async () => {
|
||||
const res = await getUserIntegral()
|
||||
integralData.value = res.data.availablePoints
|
||||
}
|
||||
/** 获取用户积分 */
|
||||
const getIntegral = async () => {
|
||||
const res = await getUserIntegral()
|
||||
integralData.value = res.data.availablePoints
|
||||
}
|
||||
|
||||
/**
|
||||
* 登录腾讯 IM
|
||||
*/
|
||||
const loginTencentIM = async () => {
|
||||
await refreshUserInfo()
|
||||
await TUILogin.login({
|
||||
SDKAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig,
|
||||
framework: `vue3`
|
||||
})
|
||||
/**
|
||||
* 登录腾讯 IM
|
||||
*/
|
||||
const loginTencentIM = async () => {
|
||||
await refreshUserInfo()
|
||||
await TUILogin.login({
|
||||
SDKAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig,
|
||||
framework: `vue3`
|
||||
})
|
||||
|
||||
await TUIChatEngine.login({
|
||||
SDKAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig,
|
||||
useUploadPlugin: true // 使用文件上传插件
|
||||
})
|
||||
// #ifdef H5
|
||||
await useLoginState().login({
|
||||
SDKAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig
|
||||
})
|
||||
// #endif
|
||||
await TUIChatEngine.login({
|
||||
SDKAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig,
|
||||
useUploadPlugin: true // 使用文件上传插件
|
||||
})
|
||||
// #ifdef H5
|
||||
await useLoginState().login({
|
||||
SDKAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig
|
||||
})
|
||||
// #endif
|
||||
|
||||
// #ifdef APP-PLUS
|
||||
await useLoginState().login({
|
||||
sdkAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig
|
||||
})
|
||||
console.log(tencentUserSig.value.appKey, '====')
|
||||
connectIM()
|
||||
// #endif
|
||||
}
|
||||
// #ifdef APP-PLUS
|
||||
await useLoginState().login({
|
||||
sdkAppID: tencentUserSig.value.sdkappID,
|
||||
userID: tencentUserSig.value.userId,
|
||||
userSig: tencentUserSig.value.userSig
|
||||
})
|
||||
console.log(tencentUserSig.value.appKey, '====')
|
||||
await connectIM()
|
||||
// #endif
|
||||
}
|
||||
|
||||
//连接融云IM
|
||||
async function connectIM() {
|
||||
const options = {
|
||||
naviServer: ''
|
||||
}
|
||||
imEngine.value = await RCIMIWEngine.create(tencentUserSig.value.appKey, options)
|
||||
imEngine.value.setOnConnectedListener((res) => {
|
||||
if (res.code != 0) {
|
||||
uni.hideLoading();
|
||||
uni.showToast({
|
||||
title: 'OnCon:' + res.code,
|
||||
icon: 'error'
|
||||
})
|
||||
return
|
||||
}
|
||||
//连接成功
|
||||
CallLib.init({});
|
||||
onAllListeners()
|
||||
console.log('call.init')
|
||||
// this.libPage = true;
|
||||
// this.loginUserId = res.userId;
|
||||
uni.hideLoading();
|
||||
console.log('登录成功')
|
||||
if (uni.getSystemInfoSync().platform === 'android') {
|
||||
permision.requestAndroidPermission('android.permission.CAMERA');
|
||||
permision.requestAndroidPermission('android.permission.RECORD_AUDIO');
|
||||
}
|
||||
});
|
||||
let code = await imEngine.value.connect(tencentUserSig.value.ryToken, 10)
|
||||
if (code != 0) {
|
||||
uni.hideLoading();
|
||||
uni.showToast({
|
||||
title: 'connect:' + code,
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function onAllListeners(){
|
||||
CallLib.onCallReceived(res => {
|
||||
console.log(res)
|
||||
console.log(
|
||||
'Engine:OnCallReceived=>' + '监听通话呼入, 目标id=>',
|
||||
res.data.targetId
|
||||
)
|
||||
})
|
||||
|
||||
CallLib.onCallConnected(res => {
|
||||
console.log(res)
|
||||
console.log(
|
||||
'Engine:OnCallConnected=>' +
|
||||
'已建立通话通话接通时,通过回调 onCallConnected 通知当前 call 的详细信息',
|
||||
res
|
||||
)
|
||||
})
|
||||
|
||||
CallLib.onRemoteUserJoined(res => {
|
||||
console.log(
|
||||
'Engine:OnRemoteUserJoined=>' +
|
||||
'主叫端拨出电话,被叫端收到请求后,加入通话,被叫端Id为=>',
|
||||
res.data.userId
|
||||
)
|
||||
})
|
||||
|
||||
CallLib.onCallDisconnected(res => {
|
||||
console.log(
|
||||
'Engine:OnCallDisconnected=>' + '挂断成功, 挂断原因=>',
|
||||
res.data.reason
|
||||
)
|
||||
})
|
||||
}
|
||||
//连接融云IM
|
||||
const connectIM = async () => {
|
||||
const options = {
|
||||
naviServer: ''
|
||||
}
|
||||
imEngine.value = await RCIMIWEngine.create(
|
||||
tencentUserSig.value.appKey,
|
||||
options
|
||||
)
|
||||
imEngine.value.setOnConnectedListener(res => {
|
||||
if (res.code != 0) {
|
||||
uni.hideLoading()
|
||||
uni.showToast({
|
||||
title: 'OnCon:' + res.code,
|
||||
icon: 'error'
|
||||
})
|
||||
return
|
||||
}
|
||||
//连接成功
|
||||
CallLib.init({})
|
||||
console.log('call.init')
|
||||
// this.libPage = true;
|
||||
// this.loginUserId = res.userId;
|
||||
uni.hideLoading()
|
||||
console.log('登录成功')
|
||||
})
|
||||
const callback = {
|
||||
onDatabaseOpened: res => {
|
||||
console.log('数据库打开')
|
||||
},
|
||||
onConnected: res => {
|
||||
console.log(res)
|
||||
if (res.code === 0) {
|
||||
// uni.showToast({
|
||||
// title: '连接成功',
|
||||
// icon: 'none'
|
||||
// })
|
||||
console.log('连接成功')
|
||||
} else if (res.code === 34001) {
|
||||
// uni.showToast({
|
||||
// title: '连接已存在,不需要再连接',
|
||||
// icon: 'none'
|
||||
// })
|
||||
console.log('连接已存在,不需要再连接')
|
||||
}
|
||||
}
|
||||
}
|
||||
let code = await imEngine.value.connect(
|
||||
tencentUserSig.value.ryToken,
|
||||
10,
|
||||
callback
|
||||
)
|
||||
if (code != 0) {
|
||||
uni.hideLoading()
|
||||
uni.showToast({
|
||||
title: 'connect:' + code,
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 清除用户信息(退出登录)
|
||||
*/
|
||||
const clearUserInfo = async () => {
|
||||
const show = await showDialog('提示', '确定要退出登录吗?')
|
||||
if (show) {
|
||||
await logout()
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 清除用户信息(退出登录)
|
||||
*/
|
||||
const clearUserInfo = async () => {
|
||||
const show = await showDialog('提示', '确定要退出登录吗?')
|
||||
if (show) {
|
||||
await logout()
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 退出登录(不带提示)
|
||||
*/
|
||||
const logout = async () => {
|
||||
if (!userInfo.value) return
|
||||
try {
|
||||
userInfo.value = null
|
||||
/**
|
||||
* 退出登录(不带提示)
|
||||
*/
|
||||
const logout = async () => {
|
||||
if (!userInfo.value) return
|
||||
try {
|
||||
userInfo.value = null
|
||||
|
||||
await userLogout()
|
||||
await TUILogin.logout()
|
||||
await TUIChatEngine.logout()
|
||||
// #ifdef APP-PLUS
|
||||
removeFriendList()
|
||||
removeGroupList()
|
||||
await useLoginState().logout()
|
||||
// #endif
|
||||
// #ifdef H5
|
||||
await useLoginState().logout()
|
||||
// #endif
|
||||
clearAllUserInfo()
|
||||
await showToast('退出登录成功', 'success')
|
||||
reLaunch('/pages/login/login')
|
||||
} catch (error) {
|
||||
clearAllUserInfo()
|
||||
await showToast('退出登录成功', 'success')
|
||||
reLaunch('/pages/login/login')
|
||||
}
|
||||
}
|
||||
await userLogout()
|
||||
await TUILogin.logout()
|
||||
await TUIChatEngine.logout()
|
||||
// #ifdef APP-PLUS
|
||||
removeFriendList()
|
||||
removeGroupList()
|
||||
await useLoginState().logout()
|
||||
// #endif
|
||||
// #ifdef H5
|
||||
await useLoginState().logout()
|
||||
// #endif
|
||||
clearAllUserInfo()
|
||||
await showToast('退出登录成功', 'success')
|
||||
reLaunch('/pages/login/login')
|
||||
} catch (error) {
|
||||
clearAllUserInfo()
|
||||
await showToast('退出登录成功', 'success')
|
||||
reLaunch('/pages/login/login')
|
||||
}
|
||||
}
|
||||
|
||||
/** 清空所有用户缓存 */
|
||||
const clearAllUserInfo = async () => {
|
||||
userInfo.value = null
|
||||
tencentUserSig.value = null
|
||||
fontSizeData.value = 26
|
||||
clearToken()
|
||||
removeUserInfoData()
|
||||
removeSig()
|
||||
removeFontSize()
|
||||
}
|
||||
/** 清空所有用户缓存 */
|
||||
const clearAllUserInfo = async () => {
|
||||
userInfo.value = null
|
||||
tencentUserSig.value = null
|
||||
fontSizeData.value = 26
|
||||
clearToken()
|
||||
removeUserInfoData()
|
||||
removeSig()
|
||||
removeFontSize()
|
||||
}
|
||||
|
||||
/** 刷新用户信息(如用户信息被修改) */
|
||||
const refreshUserInfo = async () => {
|
||||
const res = await getUserData()
|
||||
await getIntegral()
|
||||
await setUserInfoData(res.data)
|
||||
userInfo.value = res.data
|
||||
}
|
||||
/** 刷新用户信息(如用户信息被修改) */
|
||||
const refreshUserInfo = async () => {
|
||||
const res = await getUserData()
|
||||
await getIntegral()
|
||||
await setUserInfoData(res.data)
|
||||
userInfo.value = res.data
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新部分用户信息(例如昵称、头像)
|
||||
*/
|
||||
const updateUserInfo = async partialData => {
|
||||
if (!userInfo.value) return
|
||||
await updateUserData(partialData)
|
||||
await refreshUserInfo()
|
||||
}
|
||||
/**
|
||||
* 更新部分用户信息(例如昵称、头像)
|
||||
*/
|
||||
const updateUserInfo = async partialData => {
|
||||
if (!userInfo.value) return
|
||||
await updateUserData(partialData)
|
||||
await refreshUserInfo()
|
||||
}
|
||||
|
||||
/** 更新字体大小 */
|
||||
const updateFontSize = async fontSize => {
|
||||
fontSizeData.value = fontSize
|
||||
setFontSize(fontSize)
|
||||
}
|
||||
/** 更新字体大小 */
|
||||
const updateFontSize = async fontSize => {
|
||||
fontSizeData.value = fontSize
|
||||
setFontSize(fontSize)
|
||||
}
|
||||
|
||||
return {
|
||||
userInfo,
|
||||
integralData,
|
||||
tencentUserSig,
|
||||
fontSizeData,
|
||||
getIntegral,
|
||||
clearAllUserInfo,
|
||||
updateFontSize,
|
||||
logout,
|
||||
refreshUserInfo,
|
||||
fetchUserInfo,
|
||||
loginTencentIM,
|
||||
setUserInfo,
|
||||
clearUserInfo,
|
||||
updateUserInfo
|
||||
}
|
||||
})
|
||||
return {
|
||||
imEngine,
|
||||
userInfo,
|
||||
integralData,
|
||||
tencentUserSig,
|
||||
fontSizeData,
|
||||
getIntegral,
|
||||
clearAllUserInfo,
|
||||
updateFontSize,
|
||||
logout,
|
||||
refreshUserInfo,
|
||||
fetchUserInfo,
|
||||
loginTencentIM,
|
||||
setUserInfo,
|
||||
clearUserInfo,
|
||||
updateUserInfo
|
||||
}
|
||||
})
|
||||
|
||||
@@ -33,6 +33,13 @@
|
||||
},
|
||||
fail: (code, msg) => {
|
||||
console.error(`sendTextMessage failed, code: ${code}, msg: ${msg}`);
|
||||
if (code == 10017) {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '你被禁止发言',
|
||||
showCancel: false
|
||||
})
|
||||
}
|
||||
},
|
||||
})
|
||||
inputValue.value = ""
|
||||
|
||||
@@ -1,313 +1,396 @@
|
||||
<template>
|
||||
<view class="bottom-drawer-container" v-if="modelValue">
|
||||
<view class="drawer-overlay" @tap="close"></view>
|
||||
<view class="bottom-drawer" :class="{ 'drawer-open': modelValue }">
|
||||
|
||||
<view class="drawer-header">
|
||||
<view class="user-info">
|
||||
<image class="user-avatar" :src="userInfo?.avatarURL || defaultAvatarURL" mode="aspectFill" />
|
||||
<view class="user-details">
|
||||
<view class="name-badge-row">
|
||||
<text class="user-name">{{ userInfo?.userName || userInfo?.userID || '' }}</text>
|
||||
<!-- <view class="badge">
|
||||
<view class="bottom-drawer-container" v-if="modelValue">
|
||||
<view class="drawer-overlay" @tap="close"></view>
|
||||
<view class="bottom-drawer" :class="{ 'drawer-open': modelValue }">
|
||||
<view class="drawer-header">
|
||||
<view class="user-info">
|
||||
<image
|
||||
class="user-avatar"
|
||||
:src="userInfo?.avatarURL || defaultAvatarURL"
|
||||
mode="aspectFill"
|
||||
/>
|
||||
<view class="user-details">
|
||||
<view class="name-badge-row">
|
||||
<text class="user-name">
|
||||
{{ userInfo?.userName || userInfo?.userID || '' }}
|
||||
</text>
|
||||
<!-- <view class="badge">
|
||||
<image class="badge-icon" src="/static/images/heart.png" mode="aspectFit" />
|
||||
<text class="badge-text">65</text>
|
||||
</view> -->
|
||||
</view>
|
||||
<text class="user-id">ID: {{ userInfo?.userID || '' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <view class="follow-button" @tap="followUser">
|
||||
</view>
|
||||
<text class="user-id">ID: {{ userInfo?.userID || '' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <view class="follow-button" @tap="followUser">
|
||||
<text class="follow-text">Follow</text>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="drawer-content">
|
||||
<view class="drawer-actions">
|
||||
<!-- <view class="action-btn" @tap="muteSpeak">
|
||||
<view class="action-btn-image-container">
|
||||
<image class="action-btn-image" v-if="userInfo?.isMessageDisabled" src="/static/images/unmute-speak.png"
|
||||
mode="aspectFit" />
|
||||
<image class="action-btn-image" v-else src="/static/images/mute-speak.png" mode="aspectFit" />
|
||||
</view>
|
||||
<text class="action-btn-content" v-if="userInfo?.isMessageDisabled">解除禁言</text>
|
||||
<text class="action-btn-content" v-else>禁言</text>
|
||||
</view> -->
|
||||
<view class="action-btn" @tap="kickOut">
|
||||
<view class="action-btn-image-container">
|
||||
<image class="action-btn-image" src="/static/images/kick-out-room.png" mode="aspectFit" />
|
||||
</view>
|
||||
<text class="action-btn-content">踢出房间</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <view class="divider-line-container">
|
||||
<view class="drawer-content">
|
||||
<view class="drawer-actions">
|
||||
<view class="action-btn" @tap="muteSpeak">
|
||||
<view class="action-btn-image-container">
|
||||
<image
|
||||
class="action-btn-image"
|
||||
v-if="userInfo?.isMessageDisabled"
|
||||
src="/static/images/unmute-speak.png"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
<image
|
||||
class="action-btn-image"
|
||||
v-else
|
||||
src="/static/images/mute-speak.png"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
</view>
|
||||
<text
|
||||
class="action-btn-content"
|
||||
v-if="userInfo?.isMessageDisabled"
|
||||
>
|
||||
解除禁言
|
||||
</text>
|
||||
<text class="action-btn-content" v-else>禁言</text>
|
||||
</view>
|
||||
<view class="action-btn" @tap="kickOut">
|
||||
<view class="action-btn-image-container">
|
||||
<image
|
||||
class="action-btn-image"
|
||||
src="/static/images/kick-out-room.png"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
</view>
|
||||
<text class="action-btn-content">踢出房间</text>
|
||||
</view>
|
||||
|
||||
<view class="action-btn" @tap="onDdmini">
|
||||
<view class="action-btn-image-container">
|
||||
<image
|
||||
class="action-btn-image"
|
||||
src="/static/images/administrator.png"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
</view>
|
||||
<text class="action-btn-content">设置管理员</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <view class="divider-line-container">
|
||||
<view class="divider-line"></view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref
|
||||
} from 'vue';
|
||||
import {
|
||||
useLiveListState
|
||||
} from "@/uni_modules/tuikit-atomic-x/state/LiveListState";
|
||||
import {
|
||||
useLiveAudienceState
|
||||
} from "@/uni_modules/tuikit-atomic-x/state/LiveAudienceState";
|
||||
const {
|
||||
currentLive
|
||||
} = useLiveListState();
|
||||
const {
|
||||
setAdministrator,
|
||||
revokeAdministrator,
|
||||
kickUserOutOfRoom,
|
||||
disableSendMessage
|
||||
} = useLiveAudienceState(uni?.$liveID);
|
||||
import { ref, computed } from 'vue'
|
||||
import { useLiveListState } from '@/uni_modules/tuikit-atomic-x/state/LiveListState'
|
||||
import { useLiveAudienceState } from '@/uni_modules/tuikit-atomic-x/state/LiveAudienceState'
|
||||
const { currentLive } = useLiveListState()
|
||||
const {
|
||||
setAdministrator,
|
||||
revokeAdministrator,
|
||||
kickUserOutOfRoom,
|
||||
disableSendMessage
|
||||
} = useLiveAudienceState(uni?.$liveID)
|
||||
|
||||
const defaultAvatarURL = 'https://web.sdk.qcloud.com/component/TUIKit/assets/avatar_01.png';
|
||||
const props = defineProps({
|
||||
modelValue: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
userInfo: {
|
||||
type: Object,
|
||||
},
|
||||
liveID: {
|
||||
type: String,
|
||||
}
|
||||
});
|
||||
const defaultAvatarURL =
|
||||
'https://web.sdk.qcloud.com/component/TUIKit/assets/avatar_01.png'
|
||||
const props = defineProps({
|
||||
modelValue: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
userInfo: {
|
||||
type: Object
|
||||
},
|
||||
liveID: {
|
||||
type: String
|
||||
}
|
||||
})
|
||||
|
||||
const emit = defineEmits(['update:modelValue']);
|
||||
const close = () => {
|
||||
emit('update:modelValue', false);
|
||||
};
|
||||
const emit = defineEmits(['update:modelValue', 'update:userInfo'])
|
||||
|
||||
const muteSpeak = () => {
|
||||
console.log(
|
||||
`mute or unMute speak, liveID: ${props.liveID}, isMessageDisabled: ${props?.userInfo?.isMessageDisabled}`);
|
||||
const params = {
|
||||
liveID: uni?.$liveID,
|
||||
userID: props?.userInfo?.userID,
|
||||
isDisable: !props?.userInfo?.isMessageDisabled,
|
||||
};
|
||||
const userData = computed({
|
||||
get() {
|
||||
return props.userInfo
|
||||
},
|
||||
set(value) {
|
||||
emit('update:userInfo', value)
|
||||
}
|
||||
})
|
||||
|
||||
if (props?.userInfo?.isMessageDisabled) {
|
||||
disableSendMessage(params);
|
||||
} else {
|
||||
disableSendMessage(params);
|
||||
}
|
||||
const close = () => {
|
||||
emit('update:modelValue', false)
|
||||
}
|
||||
|
||||
close();
|
||||
};
|
||||
/** 设置为管理员 */
|
||||
const onDdmini = () => {
|
||||
console.log('====', userData.value)
|
||||
uni.showModal({
|
||||
title: `提示`,
|
||||
content: `确认设置该用户为管理员?`,
|
||||
success: c => {
|
||||
if (c.confirm) {
|
||||
uni.showLoading({
|
||||
title: '加载中...',
|
||||
mask: true // 防止穿透点击
|
||||
})
|
||||
setAdministrator({
|
||||
liveID: uni?.$liveID,
|
||||
userID: props?.userInfo?.userID,
|
||||
success: () => {
|
||||
uni.hideLoading()
|
||||
uni.showToast({
|
||||
title: '设置成功',
|
||||
icon: 'success',
|
||||
mask: true
|
||||
})
|
||||
close()
|
||||
},
|
||||
fail: () => {
|
||||
uni.hideLoading()
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const kickOut = () => {
|
||||
console.log('kick out from room', props?.userInfo?.userID);
|
||||
const muteSpeak = () => {
|
||||
console.log(
|
||||
`mute or unMute speak, liveID: ${props.liveID}, isMessageDisabled: ${props?.userInfo?.isMessageDisabled}`
|
||||
)
|
||||
const isShow = props?.userInfo?.isMessageDisabled
|
||||
uni.showModal({
|
||||
title: `提示`,
|
||||
content: isShow ? `确认禁止用户发言?` : `确认恢复用户发言?`,
|
||||
success: c => {
|
||||
if (c.confirm) {
|
||||
const params = {
|
||||
liveID: uni?.$liveID,
|
||||
userID: props?.userInfo?.userID,
|
||||
isDisable: !props?.userInfo?.isMessageDisabled
|
||||
}
|
||||
if (isShow) {
|
||||
disableSendMessage(params)
|
||||
} else {
|
||||
disableSendMessage(params)
|
||||
}
|
||||
|
||||
uni.showModal({
|
||||
content: `确认踢出${props?.userInfo?.userName || props?.userInfo?.userID}吗?`,
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
kickUserOutOfRoom({
|
||||
liveID: uni?.$liveID,
|
||||
userID: props?.userInfo?.userID,
|
||||
success: () => {
|
||||
close()
|
||||
console.log(`kickUserOutOfRoom success`);
|
||||
},
|
||||
fail: (errCode, errMsg) => {
|
||||
console.log(`kickUserOutOfRoom fail errCode: ${errCode}, errMsg: ${errMsg}`);
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
close()
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const followUser = () => {
|
||||
console.warn('== 关注用户 ', userInfo?.userName);
|
||||
// 这里可以添加关注用户的逻辑
|
||||
uni.showToast({
|
||||
title: '关注成功',
|
||||
icon: 'success'
|
||||
});
|
||||
}
|
||||
const kickOut = () => {
|
||||
console.log('kick out from room', props?.userInfo?.userID)
|
||||
|
||||
uni.showModal({
|
||||
content: `确认踢出${
|
||||
props?.userInfo?.userName || props?.userInfo?.userID
|
||||
}吗?`,
|
||||
success: res => {
|
||||
if (res.confirm) {
|
||||
kickUserOutOfRoom({
|
||||
liveID: uni?.$liveID,
|
||||
userID: props?.userInfo?.userID,
|
||||
success: () => {
|
||||
close()
|
||||
console.log(`kickUserOutOfRoom success`)
|
||||
},
|
||||
fail: (errCode, errMsg) => {
|
||||
console.log(
|
||||
`kickUserOutOfRoom fail errCode: ${errCode}, errMsg: ${errMsg}`
|
||||
)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const followUser = () => {
|
||||
console.warn('== 关注用户 ', userInfo?.userName)
|
||||
// 这里可以添加关注用户的逻辑
|
||||
uni.showToast({
|
||||
title: '关注成功',
|
||||
icon: 'success'
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.bottom-drawer-container {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
}
|
||||
.bottom-drawer-container {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.drawer-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
.drawer-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.bottom-drawer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: rgba(34, 38, 46, 1);
|
||||
border-top-left-radius: 32rpx;
|
||||
border-top-right-radius: 32rpx;
|
||||
transform: translateY(100%);
|
||||
transition-property: transform;
|
||||
transition-duration: 0.3s;
|
||||
transition-timing-function: ease;
|
||||
height: 400rpx;
|
||||
flex-direction: column;
|
||||
}
|
||||
.bottom-drawer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: rgba(34, 38, 46, 1);
|
||||
border-top-left-radius: 32rpx;
|
||||
border-top-right-radius: 32rpx;
|
||||
transform: translateY(100%);
|
||||
transition-property: transform;
|
||||
transition-duration: 0.3s;
|
||||
transition-timing-function: ease;
|
||||
height: 400rpx;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.drawer-open {
|
||||
transform: translateY(0);
|
||||
}
|
||||
.drawer-open {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.drawer-header {
|
||||
padding: 40rpx 48rpx;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.drawer-header {
|
||||
padding: 40rpx 48rpx;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.user-info {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
.user-info {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.user-avatar {
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
border-radius: 40rpx;
|
||||
border-width: 2rpx;
|
||||
border-color: #ffffff;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
.user-avatar {
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
border-radius: 40rpx;
|
||||
border-width: 2rpx;
|
||||
border-color: #ffffff;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.user-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.user-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.name-badge-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
margin-bottom: 8rpx;
|
||||
}
|
||||
.name-badge-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
margin-bottom: 8rpx;
|
||||
}
|
||||
|
||||
.user-name {
|
||||
color: #ffffff;
|
||||
font-size: 32rpx;
|
||||
font-weight: 500;
|
||||
margin-right: 16rpx;
|
||||
}
|
||||
.user-name {
|
||||
color: #ffffff;
|
||||
font-size: 32rpx;
|
||||
font-weight: 500;
|
||||
margin-right: 16rpx;
|
||||
}
|
||||
|
||||
.badge {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
background-color: #8B5CF6;
|
||||
padding: 4rpx 12rpx;
|
||||
border-radius: 16rpx;
|
||||
}
|
||||
.badge {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
background-color: #8b5cf6;
|
||||
padding: 4rpx 12rpx;
|
||||
border-radius: 16rpx;
|
||||
}
|
||||
|
||||
.badge-icon {
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
margin-right: 8rpx;
|
||||
}
|
||||
.badge-icon {
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
margin-right: 8rpx;
|
||||
}
|
||||
|
||||
.badge-text {
|
||||
color: #ffffff;
|
||||
font-size: 24rpx;
|
||||
font-weight: 500;
|
||||
}
|
||||
.badge-text {
|
||||
color: #ffffff;
|
||||
font-size: 24rpx;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.user-id {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.user-id {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.follow-button {
|
||||
background-color: #007AFF;
|
||||
padding: 12rpx 32rpx;
|
||||
border-radius: 32rpx;
|
||||
/* height: 64rpx; */
|
||||
}
|
||||
.follow-button {
|
||||
background-color: #007aff;
|
||||
padding: 12rpx 32rpx;
|
||||
border-radius: 32rpx;
|
||||
/* height: 64rpx; */
|
||||
}
|
||||
|
||||
.follow-text {
|
||||
color: #ffffff;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
}
|
||||
.follow-text {
|
||||
color: #ffffff;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.drawer-content {
|
||||
height: 400rpx;
|
||||
justify-content: flex-start;
|
||||
padding: 0 48rpx;
|
||||
}
|
||||
.drawer-content {
|
||||
height: 400rpx;
|
||||
justify-content: flex-start;
|
||||
padding: 0 48rpx;
|
||||
}
|
||||
|
||||
.drawer-actions {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
.drawer-actions {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.action-btn {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-left: 10rpx;
|
||||
height: 160rpx;
|
||||
width: 120rpx
|
||||
}
|
||||
.action-btn {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-left: 10rpx;
|
||||
height: 160rpx;
|
||||
width: 120rpx;
|
||||
}
|
||||
|
||||
.action-btn-image-container {
|
||||
width: 100rpx;
|
||||
height: 100rpx;
|
||||
background-color: rgba(43, 44, 48, 1);
|
||||
margin-bottom: 16rpx;
|
||||
border-radius: 20rpx;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.action-btn-image-container {
|
||||
width: 100rpx;
|
||||
height: 100rpx;
|
||||
background-color: rgba(43, 44, 48, 1);
|
||||
margin-bottom: 16rpx;
|
||||
border-radius: 20rpx;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.action-btn-image {
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
}
|
||||
.action-btn-image {
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
}
|
||||
|
||||
.action-btn-content {
|
||||
font-size: 24rpx;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
.action-btn-content {
|
||||
font-size: 24rpx;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
|
||||
.divider-line-container {
|
||||
height: 68rpx;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
.divider-line-container {
|
||||
height: 68rpx;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.divider-line {
|
||||
width: 268rpx;
|
||||
height: 10rpx;
|
||||
border-radius: 200rpx;
|
||||
background-color: #ffffff;
|
||||
position: absolute;
|
||||
bottom: 16rpx;
|
||||
}
|
||||
</style>
|
||||
.divider-line {
|
||||
width: 268rpx;
|
||||
height: 10rpx;
|
||||
border-radius: 200rpx;
|
||||
background-color: #ffffff;
|
||||
position: absolute;
|
||||
bottom: 16rpx;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user