Browse Source

修复弹窗不能复位

master
453530270@qq.com 2 years ago
parent
commit
54e6dd39bd
  1. 6
      pages/login/components/WhPopup.vue

6
pages/login/components/WhPopup.vue

@ -4,7 +4,7 @@
<view class="mask"></view>
<view class="layer">
<view class="specification-wrapper">
<scroll-view class="specification-wrapper-content" scroll-y="true" >
<scroll-view class="specification-wrapper-content" v-if="isShow==getValue()" scroll-y="true" >
<!-- 隐私政策 -->
<privacy v-if="mkey=='private'"></privacy>
<!-- 协议 -->
@ -81,7 +81,8 @@
data() {
return {
// goodsInfo: {}
//
isShow:false,
}
},
@ -93,6 +94,7 @@
//
},
getValue() {
this.isShow=true
// #ifndef VUE3
return this.value;
// #endif

Loading…
Cancel
Save