zcmx.wxml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!--pages/zcmx/zcmx.wxml-->
  2. <view>
  3. <view class="table one">
  4. <view class="table_title" style="background: no-repeat center/100% url('../images/gzw/btls.png');">南岸区拟处置房屋资产明细</view>
  5. <view class="table_item">
  6. <view class="col col_t">
  7. <view class="row row_t" style="width: 10%;">序号</view>
  8. <view class="row row_t" style="width: 25%;">产权单位</view>
  9. <view class="row row_t" style="width: 18.6%;">楼顶名称</view>
  10. <view class="row row_t" style="width: 25%;">楼栋位置</view>
  11. <view class="row row_t" style="width: 20%;">空置面积</view>
  12. </view>
  13. <view>
  14. <view class="col" wx:for="{{emptyAreaList}}" wx:for-index="idx" wx:for-item="item">
  15. <view class="row" style="width: 10%;">{{idx+1}}</view>
  16. <view class="row" style="width: 25%;">{{item.propertyUnitName}}</view>
  17. <view class="row" style="width: 18.6%;">{{item.buildingName}}</view>
  18. <view class="row" style="width: 25%;overflow:hidden;">{{item.buildingAddress}}</view>
  19. <view class="row" style="width: 20%;">{{item.emptyArea}}</view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="page">
  24. <view wx:if="{{emptyAreaIndex>1}}" class="turning " bind:tap="prevLoadDetail" style="background: #3B77E6;">上一页</view>
  25. <view class="pagenum">{{emptyAreaIndex}}</view>
  26. <view wx:if="{{emptyAreaIndex<emptyAreaTotalPage}}" class="turning" bind:tap="nextLoadDetail" style="background: #3B77E6;">下一页</view>
  27. </view>
  28. </view>
  29. <view class="table two" >
  30. <view class="table_title" style="background: no-repeat center/100% url('../images/gzw/btcs.png');">咨询热线</view>
  31. <view class="table_item">
  32. <view class="col col_t orange">
  33. <view class="row row_t" style="width: 10%;">序号</view>
  34. <view class="row row_t" style="width: 68.6%;">单位名称</view>
  35. <view class="row row_t" style="width: 20%;">联系方式</view>
  36. </view>
  37. <view>
  38. <view class="col orange_d" wx:for="{{contactList}}" wx:for-index="idx" wx:for-item="item">
  39. <view class="row" style="width: 10%;">{{idx+1}}</view>
  40. <view class="row" style="width: 68.6%;">{{item.propertyUnitName}}</view>
  41. <view class="row" style="width: 20%;">{{item.contactPhone==null?"无":item.contactPhone}}</view>
  42. </view>
  43. </view>
  44. <view class="page">
  45. <!-- contactIndex:1,
  46. contactTotalPage:0 -->
  47. <view wx:if="{{contactIndex>1}}" bind:tap="prevLoadHotline" class="turning" style="background: #FC8433;">上一页</view>
  48. <view class="pagenum">{{contactIndex}}</view>
  49. <view wx:if="{{contactIndex<contactTotalPage}}" bind:tap="nextLoadHotline" class="turning" style="background: #FC8433;">下一页</view>
  50. </view>
  51. </view>
  52. </view>
  53. <view style="height: 100rpx;"></view>
  54. </view>