123456789101112131415161718192021222324252627 |
- <view class="ohter_bg">
- <scroll-view class="ohter_sc">
- <view wx:for="{{list}}" wx:if="{{index != dataIndex}}" class="ohter_item_bg" style="background-image: url('{{imgPath}}/other/ohter1.png'); " bindtap="switchDetail" data-index="{{index}}">
- <view class="ohter_item_imge_bg" >
- <image class="ohter_item_imge" src="{{imgPath}}/details/img/{{item.img}}"></image>
- </view>
- <view class="ohter-left">
- <view class="ohter-left-top">{{item.name}}</view>
- <view class="ohter-left-bottom">
- <view class="ohter_gymj_h">
- <view style="width: 40rpx; height: 25rpx;">
- <image style="display: block; width: 25rpx; height: 25rpx;" src="{{imgPath}}/other/ohter2.png"></image>
- </view>
- <view style="color: #fff; font-size: 25rpx; font-weight: bold;">供应面积/{{item.area}}亩</view>
- </view>
- <view class="ohter_jhgdyt_h" >
- <view style="width: 40rpx; height: 25rpx;">
- <image style="display: block; width: 25rpx; height: 25rpx;" src="{{imgPath}}/other/ohter3.png"></image>
- </view>
- <view style="color: #fff; font-size: 25rpx; font-weight: bold;">计划供地用途</view>
- <view style="margin-left: 10rpx; height: 30rpx; border:solid 1rpx #00FFFF; color: #00FFFF; border-radius: 10rpx;">{{item.use}}</view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
|