24 lines
395 B
Vue
24 lines
395 B
Vue
<template>
|
|
<view class="">
|
|
<web-view :src="sendImg"></web-view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
name:"",
|
|
sendImg: "http://192.168.3.63:8081"
|
|
}
|
|
},
|
|
onLoad: function() {
|
|
this.name = this.$store.state.user.name;
|
|
this.sendImg = `http://47.97.117.253:9005/#/home?name=${this.name}`
|
|
},
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |