123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <view class="tj_listItem" data-id="{{room.id}}" bindtap="gotoWV">
- <view class="tj_listItemCover">
- <image mode="aspectFill" class="coverImage"
- src="{{room.appListPicUrl}}"></image>
- </view>
- <view class="tj_listItemMsg">
- <p class="tj_listItemTitle">
- {{room.name}}
- </p>
- <view class="tj_listItemTip">
- <view>
- <text class="tj_listItemTipText">{{room.address}}</text>
- <!-- <text> | </text> -->
- </view>
- <!-- <view>
- <text>唐家湾镇</text>
- <text> | </text>
- </view>
- <view>
- <text>格力海岸</text>
- </view> -->
- </view>
- <view class="tj_listItemTag">
- <view class="tagVr">
- <view class="tagItemIcon">
- <image class="tagItemIconImage" mode="heightFix" src="../../static/images/icon/vrIcon.png"></image>
- </view>
- <view class="tip">
- 房源
- </view>
- </view>
- <view class="tagItem">VR看房</view>
- <view class="tagItem">随时可看</view>
- </view>
- <view class="tj_listItemPrice">
- <text class="unitPrice">平均{{room.averagePrice}}元/平</text>
- <text class="totalPrice" wx:if="{{room.type==2}}">{{room.retailPrice}}元/月</text>
- <text class="totalPrice" wx:else>{{room.retailPrice}}万</text>
- </view>
- </view>
- </view>
|