periphery.wxml 740 B

1234567891011121314
  1. <view class="ppy-bg">
  2. <view class="ppy_top">
  3. <view wx:for="{{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="{{peripherylist}}" class="ppy-body-item">
  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: 55%; text-align: left;">{{item.name}}</view>
  11. <view style="width: 35%; text-align: right;">直线{{item.distanc}}km</view>
  12. </view>
  13. </view>
  14. </view>