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.
|
|
|
<template>
|
|
|
|
<view v-if="falge">
|
|
|
|
<web-view src="https://zsy-wx.mianyang.cn/#/xiangmu"></web-view>
|
|
|
|
<!-- <web-view src="http://192.168.0.155:8080//#/xiangmu"></web-view> -->
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
falge: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
this.falge = true
|
|
|
|
},
|
|
|
|
onHide() {
|
|
|
|
this.falge=false
|
|
|
|
console.log("yingc");
|
|
|
|
},
|
|
|
|
onShareAppMessage() {
|
|
|
|
return {
|
|
|
|
title: "", // 默认是小程序的名称(可以写slogan等)
|
|
|
|
path: '/pages/user/user',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
|
|
</style>
|