- uni.pageScrollTo,安卓系统能正常滚动到指定位置,ios系统却不能滚动到指定位置?
[图片] uni.pageScrollTo滚动到指定位置,Android系统能正常滚动到指定位置,ios系统却不能滚动到指定位置,出现兼容问题,请问怎么解决
05-14 - 各位大佬,这个怎么解决?
<view class="market_pages"> <!-- 卡片 --> <view class="items"> <navigator class="card" v-for="item in fenceList" :key="item.id" :url="getNavigationUrl(item)" hover-class="none" :open-type=" item && item.devices !== undefined && item.devices !== null ? 'navigate' : 'none' " > <!-- 需要添加设备 --> <view class="scan_card flexs" v-if="!item.devices || (item.devices && !item.devices.length)" > <view class="add_equipment flexs" @tap="addEquipment(item)" >添加设备</view> </view> </navigator>[图片]
05-08