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.
33 lines
498 B
33 lines
498 B
<template> |
|
<view v-if="falge"> |
|
<web-view src="https://zsy-wx.mianyang.cn/#/property1"></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/industry/industry', |
|
} |
|
}, |
|
|
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
|
|
</style>
|
|
|