Commit a8030a50 authored by chenqikuai's avatar chenqikuai

fix: 修复头像链接传输

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