12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <view class="tj_listItem" data-id="{{room.id}}" data-index="{{index}}" bindtap="gotoWV">
- <view class="tj_listItemCover">
- <image wx:if="{{room.appListPicUrl!=''}}" mode="aspectFill" class="coverImage" src="{{room.appListPicUrl}}"></image>
- <image wx:else mode="aspectFill" class="coverImage" src="../../static/images/icon/pic_bg@2x.png"></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>
- <!-- <text class="totalPrice" wx:if="{{room.type==2}}">{{room.retailPrice}}元/月</text> -->
- <!-- <view class="tj_listItemPrice">
- <text class="unitPrice">平均{{room.averagePrice}}元/平</text>
- <text class="totalPrice">{{room.retailPrice}}万</text>
- </view> -->
- </view>
- </view>
|