You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40 lines
751 B

<template>
<v-page>
<v-header :title="$t('service.a17')"></v-header>
<view class="onsczone">
<web-view src="https://www.google.com/webhp?igu=1" style="margin-top: 3rem;"></web-view>
</view>
</v-page>
</template>
<script>
export default {
data() {
return {
csurl:"https://cs.btcaholic.com/chat/?toid=",
}
},
mounted() {
this.mkcslinks()
},
methods: {
// build
mkcslinks(){
let user = uni.getStorageSync('user')
if(user){
// console.log(user)
let ustr = JSON.parse(user)
// console.log(ustr)
this.csurl += ustr.referrer+"&room_id="+ustr.account;
// console.log("user",this.csurl)
}
}
}
}
</script>
<style lang="less" scoped>
.onsczone{
margin-top: 12rem;
}
</style>