<!--miniprogram/pages/indexapp/indexapp.wxml--> <view class="" hover-class="none" hover-stop-propagation="false" style="width: 100%; height: 100%;"> <map id="map" longitude="{{longitude}}" latitude=" {{latitude}}" controls="{{controls}}" bindcontroltap="controltap" markers="{{markers}}" scale="13" show-location style="width: 100%; height: 100%;"></map> </view> <view class="titleinfo">最近访问的位置</view> <view class="log-list" wx:for="{{deviceloglist}}" wx:key="index"> <!-- <image class='log-image' mode="aspectFill" src="/images/ys.png"></image> --> <!-- <view class="log-info"> --> <van-row> <van-col span="4"> <view wx:if="{{item.welltype==1}}"> <image class='log-image' src="/images/ys.png"></image> </view> <view wx:elif="{{item.welltype==2}}"> <image class='log-image' src="/images/ws.png"></image> </view> <view wx:elif="{{item.welltype==3}}"> <image class='log-image' src="/images/rq.png"></image> </view> <view wx:elif="{{item.welltype==4}}"> <image class='log-image' src="/images/rl.png"></image> </view> <view wx:elif="{{item.welltype==5}}"> <image class='log-image' src="/images/dl.png"></image> </view> <view wx:elif="{{item.welltype==6}}"> <image class='log-image' src="/images/js.png"></image> </view> <view wx:else> <image class='log-image' src="/images/bm.png"></image> </view> </van-col> <van-col class="log-info" span="18"> <view class="title">{{item.devcode}} {{item.devicetype}}</view> <view class="subtitle"> {{item.installtime}} {{item.project}} </view> </van-col> <van-col span="2"> <image bindtap="jump" data-point-lon="{{item.longitude}}" data-point-lat="{{item.latitude}}" class='point-image' src="/images/point.png"></image> </van-col> </van-row> </view>