在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
项目中需要对每一个民宿里的每一个房间都需要popup弹出层来介绍每一个房间,房间数据都在一个接口(此民宿)上。
主要代码如下:
HTML: <view v-for='(item,index) in roomDetail' :key='index'> <text @tap="togglePopup('bottom', 'popup',index)" >{{item.bedsDescription}}</text> <uni-popup :ref="`popup${index}`" :type="type" style="z-index: 99;"> //弹出层里的内容 </uni-popup> </view> JS: togglePopup(type, open,id) {
|
请发表评论