123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <wxs src="../../../utils/filters.wxs" module="filters"></wxs>
- <view class="companybox">
- <view class="matterbox">
- <view class="clearfix secondtitbox" style="padding:5rpx 0;">
- <view wx:if="{{mattertype=='热装楼盘'}}" class="color384855 pull-left progress">
- <view data-type="new" bindtap="setBuildFilter" class=" fontfpr fontr28 pull-left {{orderBuildType=='new'?'nowordertit':''}}">最新</view>
- <view data-type="hot" bindtap="setBuildFilter" class=" fontfpr fontr28 pull-left {{orderBuildType=='hot'?'nowordertit':''}}">最热</view>
- </view>
- </view>
- <view class="">
- <!-- 热装楼盘 -->
- <view hidden="{{mattertype!='热装楼盘'}}" class="publicpraisebox clearfix">
- <view wx:for="{{buildinglist}}" wx:for-item="item" wx:for-index="idx" wx:key="idx" class="progress-box-item" data-id="{{item.id}}" bindtap="toPageDetail">
- <view class="progress-left" data-id="{{item.id}}" >
- <image class="progress-left-img" src="{{item.cover[0]}}?x-oss-process=image/resize,w_375"></image>
- <view class="progress-left-text">{{item.duetime}}交房</view>
- </view>
- <view class="progress-right">
- <view class="progress-right-title" data-id="{{item.id}}">
- <text class="fontw700 font32">{{item.name}}</text>
- </view>
- <view class="progress-right-area" data-id="{{item.id}}">
- <text class="colorCECECE font28">{{item.areastr||'暂未关联户型'}}</text>
- </view>
- <view class="progress-right-address flex align-center">
- <view class="p-r-img1">
- <image src="../../../img/addressicon.png" mode="widthFix"></image>
- </view>
- <view class="flex-sub progress-right-address ml10">
- <text class="color424242 font28">{{item.address}}</text>
- </view>
- </view>
- <view class="flex align-center justify-between mt10">
- <view class="font22 color989898">更新时间:{{item.update_time}}</view>
- <view class="flex-sub flex align-center justify-end color45ADFF ml10">
- </view>
- </view>
- </view>
- </view>
- <nonedata len="{{buildinglist.length}}" datashow="{{datashow}}"></nonedata>
- </view>
- </view>
- </view>
- </view>
- <sharefooter wx:if="{{type!=3}}" type='{{2}}' shareperson-msg="{{shareobj}}" companyobj="{{companyobj}}"></sharefooter>
- <mustlogin loginFlag="{{loginFlag}}" orgname="{{companyobj.company_name}}" logo="{{companyobj.logo}}" canIUseGetUserProfile="{{canIUseGetUserProfile}}" id="loginbox" bind:run="unreadMsg"></mustlogin>
|