首页弹出

This commit is contained in:
kbing1981 2024-07-26 14:21:46 +08:00
parent 4213dca1a6
commit aad9d12b4b
1 changed files with 9 additions and 3 deletions

View File

@ -262,7 +262,7 @@
</uni-popup>
<view>
<!-- 提前结束 -->
<uni-popup ref="popup" background-color="#fff">
<uni-popup class="popup-view" ref="popup" background-color="#fff">
<view class="popup-content">
<view class="popup-close"><image @click="closePopup(type)" class="popup-close-img" src="../../static/close.png"></image></view>
<!--<view class="popup-head">
@ -401,7 +401,8 @@
cuowu:'',
type:'center',
parType:'',
contentVideo:''
contentVideo:'',
type:'center'
}
},
onShareAppMessage(res) { //
@ -695,7 +696,7 @@
this.$refs.popup.close(type);
},
gangBtn(type){
this.$refs.popup.open(type)
this.$refs.popup.open('center')
},
qidai(){
uni.showToast({
@ -1171,6 +1172,11 @@
</script>
<style scoped>
.popup-view /deep/.uni-popup__wrapper-box{
display: flex;
align-items: center;
justify-content: center;
}
/deep/.uni-video-fullscreen {
display: none;
}