Commit a8030a50 authored by chenqikuai's avatar chenqikuai

fix: 修复头像链接传输

parent 461b4034
import Bridge from "@/utils/jsBridge2"
import { Toast } from 'vant';
import Bridge from '@/utils/jsBridge2'
import { Toast } from 'vant'
import { enableLive } from '@/service/StaffService/index'
export const sendLive = () => {
......@@ -16,37 +16,63 @@ export const sendLive = () => {
// allow: true,
// time_section: '30000'
// })
enableLive().then(res => {
if (res.code === 200) {
allow = res.data.allow
time_section = res.data.time_section
}
new Bridge().bridge_live({
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)?.userInfo.phone,
avatar: window.location.host + require('../assets/icons/avatar.png'),
allow,
time_section
enableLive()
.then((res) => {
if (res.code === 200) {
allow = res.data.allow
time_section = res.data.time_section
}
new Bridge().bridge_live({
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)
?.userInfo.phone,
avatar:
window.location.protocol +
'//' +
window.location.host +
require('../assets/icons/avatar.png'),
allow,
time_section,
})
console.log(
{
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)
?.userInfo.phone,
avatar:
window.location.protocol +
'//' +
window.location.host +
require('../assets/icons/avatar.png'),
allow,
time_section,
},
'show live',
)
})
console.log({
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)?.userInfo.phone,
avatar: window.location.host + require('../assets/icons/avatar.png'),
allow,
time_section
}, 'show live');
}).catch(() => {
new Bridge().bridge_live({
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)?.userInfo.phone,
avatar: window.location.host + require('../assets/icons/avatar.png'),
allow,
time_section
.catch(() => {
new Bridge().bridge_live({
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)
?.userInfo.phone,
avatar:
window.location.protocol +
'//' +
window.location.host +
require('../assets/icons/avatar.png'),
allow,
time_section,
})
console.log(
{
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)
?.userInfo.phone,
avatar:
window.location.protocol +
'//' +
window.location.host +
require('../assets/icons/avatar.png'),
allow,
time_section,
},
'show live',
)
})
console.log({
phone: JSON.parse(window.localStorage.getItem('USER_MSG') as string)?.userInfo.phone,
avatar: window.location.host + require('../assets/icons/avatar.png'),
allow,
time_section
},'show live');
})
}
\ No newline at end of file
}
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 to comment