| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="s_container" @touchmove.stop.prevent = "stopPenetrate">
- <web-view class="webview720" :src="url" v-if='bShowWebview'></web-view>
- <!-- <web-view class="webview720" :src="url"></web-view> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url:'https://www.yuyekeji.cn/H5/720/',
- bShowWebview:false,
- }
- },
- methods: {
- onClickShutWebview(){
- // console.log('3333')
- this.bShowWebview=false;
- },
- onClickShow(){
- this.bShowWebview=true;
- },
-
- stopPenetrate(){
- return;
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .s_container {
- position: fixed;
- width: 100%;
- height: 100%;
- z-index: 3;
- // background-color: #ff0000;
- }
- .webview720{
- width: 100%;
- height: 100%;
- z-index: 3;
- }
- </style>
|