这是 uni-app 中的一个扩展组件 ,可以使用他提供的两个方法,进行打开和关闭,可以在获取 打开或关闭的方法时,竟然获取不到:
<uni-popup ref="popup">
<view class="brief-modal-content">
<view class="uni-h2-title">
<text class="brand">品牌</text>
<text class="anchor">嘉禾一品(温都水城)</text>
</view>
<view class="list">
<view class="item">
<text>3.1</text>
<text>评分</text>
</view>
<view class="item">
<text>90单</text>
<text>月售</text>
</view>
<view class="item">
<text>硅谷专送</text>
<text>约28分钟</text>
</view>
<view class="item">
<text>4元</text>
<text>配送费用</text>
</view>
<view class="item">
<text>1000m</text>
<text>距离</text>
</view>
</view>
<view class="affiche">
公告
</view>
<view class="shop-texts">
是以粥为特色的中式营养快餐,自2004年10月18日创立“嘉和一品”品牌至今,不断优化管理,积极创新,立足于“贴近百姓生活,服务千家万户”
</view>
<view class="iconfont icon-cheng cheng" @click="closePopup"></view>
</view>
</uni-popup>
我也没有什么解决办法:只能看运气了
openPopup () {
this.$refs.popup.open && this.$refs.popup.open()
},
closePopup () {
this.$refs.popup.close && this.$refs.popup.close()
},