12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!--pages/zcmx/zcmx.wxml-->
- <view>
- <view class="table one">
- <view class="table_title" style="background: no-repeat center/100% url('../images/gzw/btls.png');">南岸区拟处置房屋资产明细</view>
- <view class="table_item">
- <view class="col col_t">
- <view class="row row_t" style="width: 10%;">序号</view>
- <view class="row row_t" style="width: 25%;">产权单位</view>
- <view class="row row_t" style="width: 18.6%;">楼顶名称</view>
- <view class="row row_t" style="width: 25%;">楼栋位置</view>
- <view class="row row_t" style="width: 20%;">空置面积</view>
- </view>
- <view>
- <view class="col" wx:for="{{emptyAreaList}}" wx:for-index="idx" wx:for-item="item">
- <view class="row" style="width: 10%;">{{idx+1}}</view>
- <view class="row" style="width: 25%;">{{item.propertyUnitName}}</view>
- <view class="row" style="width: 18.6%;">{{item.buildingName}}</view>
- <view class="row" style="width: 25%;overflow:hidden;">{{item.buildingAddress}}</view>
- <view class="row" style="width: 20%;">{{item.emptyArea}}</view>
- </view>
- </view>
- </view>
- <view class="page">
- <view wx:if="{{emptyAreaIndex>1}}" class="turning " bind:tap="prevLoadDetail" style="background: #3B77E6;">上一页</view>
- <view class="pagenum">{{emptyAreaIndex}}</view>
- <view wx:if="{{emptyAreaIndex<emptyAreaTotalPage}}" class="turning" bind:tap="nextLoadDetail" style="background: #3B77E6;">下一页</view>
- </view>
- </view>
- <view class="table two" >
- <view class="table_title" style="background: no-repeat center/100% url('../images/gzw/btcs.png');">咨询热线</view>
- <view class="table_item">
- <view class="col col_t orange">
- <view class="row row_t" style="width: 10%;">序号</view>
- <view class="row row_t" style="width: 68.6%;">单位名称</view>
- <view class="row row_t" style="width: 20%;">联系方式</view>
- </view>
- <view>
- <view class="col orange_d" wx:for="{{contactList}}" wx:for-index="idx" wx:for-item="item">
- <view class="row" style="width: 10%;">{{idx+1}}</view>
- <view class="row" style="width: 68.6%;">{{item.propertyUnitName}}</view>
- <view class="row" style="width: 20%;">{{item.contactPhone==null?"无":item.contactPhone}}</view>
- </view>
- </view>
- <view class="page">
- <!-- contactIndex:1,
- contactTotalPage:0 -->
- <view wx:if="{{contactIndex>1}}" bind:tap="prevLoadHotline" class="turning" style="background: #FC8433;">上一页</view>
- <view class="pagenum">{{contactIndex}}</view>
- <view wx:if="{{contactIndex<contactTotalPage}}" bind:tap="nextLoadHotline" class="turning" style="background: #FC8433;">下一页</view>
- </view>
- </view>
- </view>
- <view style="height: 100rpx;"></view>
- </view>
|