|
|
|
@ -1,14 +1,12 @@ |
|
|
|
<template> |
|
|
|
<view class="popup" catchtouchmove="true" :class="getValue()? 'show' : 'none'" |
|
|
|
@touchmove.stop.prevent="moveHandle" @click.stop="stop"> |
|
|
|
<view class="popup" catchtouchmove="true" :class="getValue()? 'show' : 'none'" @click.stop="stop" @touchmove.stop.prevent="moveHandle"> |
|
|
|
<!-- 背景底色 --> |
|
|
|
<view class="mask" @click="close('mask')"></view> |
|
|
|
<view class="layer attr-content"> |
|
|
|
<view class="specification-wrapper"> |
|
|
|
<scroll-view class="specification-wrapper-content" scroll-y="true"> |
|
|
|
<view>{{popurl}}隆福大厦哦哦浪费到到啦f佛发大水了佛</view> |
|
|
|
|
|
|
|
<web-view src="http://localhost:8080/#/pages/help/private"></web-view> |
|
|
|
<router-view></router-view> |
|
|
|
</scroll-view> |
|
|
|
<!-- 关闭按钮 --> |
|
|
|
<view class="close" @click="close('close')" v-if="showClose != false"> |
|
|
|
@ -82,8 +80,10 @@ |
|
|
|
mounted() {}, |
|
|
|
methods: { |
|
|
|
open(e) { |
|
|
|
console.log("zujian popup open",e) |
|
|
|
// |
|
|
|
}, |
|
|
|
// 用于阻止冒泡 |
|
|
|
stop() {}, |
|
|
|
moveHandle() { |
|
|
|
//禁止父元素滑动 |
|
|
|
}, |
|
|
|
@ -187,10 +187,11 @@ |
|
|
|
padding: 30rpx 25rpx; |
|
|
|
box-sizing: border-box; |
|
|
|
|
|
|
|
.specification-wrapper-content { |
|
|
|
.specification-wrapper-content |
|
|
|
{ |
|
|
|
width: 100%; |
|
|
|
max-height: 900rpx; |
|
|
|
min-height: 300rpx; |
|
|
|
min-height: 400rpx; |
|
|
|
|
|
|
|
&::-webkit-scrollbar { |
|
|
|
/*隐藏滚轮*/ |
|
|
|
@ -221,14 +222,17 @@ |
|
|
|
|
|
|
|
.close { |
|
|
|
position: absolute; |
|
|
|
top: 30rpx; |
|
|
|
top: -30rpx; |
|
|
|
right: 25rpx; |
|
|
|
width: 50rpx; |
|
|
|
height: 50rpx; |
|
|
|
width: 60rpx; |
|
|
|
height: 60rpx; |
|
|
|
text-align: center; |
|
|
|
line-height: 50rpx; |
|
|
|
line-height: 60rpx; |
|
|
|
background-color: #fff; |
|
|
|
border-radius: 50%; |
|
|
|
|
|
|
|
.close-item { |
|
|
|
margin: 10rpx; |
|
|
|
width: 40rpx; |
|
|
|
height: 40rpx; |
|
|
|
} |
|
|
|
|