periphery.wxml 943 B

1234567891011121314
  1. <view class="ppy-bg">
  2. <view class="ppy_top">
  3. <view wx:for="{{list[dataIndex].peripherytabs}}" data-index="{{index}}" style="{{peripherytabsindex == index ? 'background-color: #00A4FF;' : ''}}" bindtap="peripherytabEvent" class="ppy_item">{{item.label}}</view>
  4. </view>
  5. <view class="ppy-body">
  6. <view wx:for="{{list[dataIndex].surroundingFacilities}}" class="ppy-body-item" wx:if="{{item.type == list[dataIndex].peripherytabs[peripherytabsindex].label}}">
  7. <!-- <view style="width: 50rpx;height: 50rpx; display: flex; align-items: center;justify-content: center;">
  8. <image style="display: block; width: 30rpx; height: 30rpx;" src="{{imgPath}}/other/ohter3.png"></image>
  9. </view> -->
  10. <view style="width: 100%; text-align: left;margin: 0 15rpx;" bindtap="mapMarkerEvent" data-id="{{item.id}}">{{item.name}}</view>
  11. <!-- <view style="width: 35%; text-align: right;">直线{{item.distanc}}km</view> -->
  12. </view>
  13. </view>
  14. </view>