Browse Source

修改推荐信息不能滑动

pda_nev
李俊城 6 months ago
parent
commit
8b8c5e1684
  1. 11
      fe/PDA/mycomponents/popup/selectClickList.vue

11
fe/PDA/mycomponents/popup/selectClickList.vue

@ -1,7 +1,7 @@
<template>
<view class="container">
<uni-popup ref="popup" :maskClick="true">
<view class="" style="align-items: center;background-color: #fff; border-radius: 15rpx; margin: 50rpx;">
<u-popup ref="popup" v-model="showPopup" border-radius="15" style="width: 100%;" mode="center">
<view class="" style="align-items: center;background-color: #fff; border-radius: 15rpx; margin: 20rpx;">
<view class="uni-center popup-content"
style="font-weight: bold; font-size: 40rpx;padding-top: 20rpx; padding-bottom: 20rpx;">
{{title}}
@ -59,7 +59,7 @@
</view>
</uni-popup>
</u-popup>
</view>
</template>
@ -75,6 +75,7 @@
data() {
return {
dataList: [],
showPopup:false
}
},
@ -83,10 +84,10 @@
methods: {
openScanPopup(list) {
this.dataList = list;
this.$refs.popup.open('center')
this.showPopup=true
},
closeScanPopup() {
this.$refs.popup.close()
this.showPopup=false
},
select(item) {
this.closeScanPopup();

Loading…
Cancel
Save