index.wxml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <!--index.wxml-->
  2. <wxs src="../../../utils/util.wxs" module="tools"></wxs>
  3. <view class="container">
  4. <view class='list-msg'>
  5. <view class="changeBtn" bindtap="goMyhouse">
  6. <image class="changePic" src="http://ro7r875ut.hn-bkt.clouddn.com/house.png"></image>
  7. </view>
  8. <text>{{garden_name}}</text>
  9. <text>{{house_name}}</text>
  10. </view>
  11. </view>
  12. <!--menu1 begin-->
  13. <view class="comm-list grid col-4 no-border comm-list-menu1" style="margin-top:{{-360+customBar}}rpx;">
  14. <view class="item" bindtap="goLivingPay">
  15. <view class="item-circle">
  16. <image src="http://ro7r875ut.hn-bkt.clouddn.com/propertyfee.png"></image>
  17. </view>
  18. <text>生活缴费</text>
  19. </view>
  20. <view class="item" bindtap="goHouse">
  21. <view class="item-circle">
  22. <image src="http://ro7r875ut.hn-bkt.clouddn.com/houserent.png"></image>
  23. </view>
  24. <text>房屋租售</text>
  25. </view>
  26. <view class="item" bindtap="goRepair">
  27. <view class="item-circle">
  28. <image src="http://ro7r875ut.hn-bkt.clouddn.com/repair.png"></image>
  29. </view>
  30. <text>报事报修</text>
  31. </view>
  32. <view class="item" bindtap="goSuggestion">
  33. <view class="item-circle">
  34. <image src="http://ro7r875ut.hn-bkt.clouddn.com/complaint.png"></image>
  35. </view>
  36. <text>投诉建议</text>
  37. </view>
  38. <view class="item" bindtap="goNotice">
  39. <view class="item-circle">
  40. <image src="http://ro7r875ut.hn-bkt.clouddn.com/notice.png"></image>
  41. </view>
  42. <text>小区公告</text>
  43. </view>
  44. <view class="item" bindtap="goVote">
  45. <view class="item-circle">
  46. <image src="http://ro7r875ut.hn-bkt.clouddn.com/vote.png"></image>
  47. </view>
  48. <text>投票活动</text>
  49. </view>
  50. <view class="item" bindtap="goServicePhone">
  51. <view class="item-circle">
  52. <image src="http://ro7r875ut.hn-bkt.clouddn.com/serviceCall.png"></image>
  53. </view>
  54. <text>服务电话</text>
  55. </view>
  56. <view class="item" bindtap="goAllServe">
  57. <view class="item-circle">
  58. <image src="/images/all.png"></image>
  59. </view>
  60. <text>全部服务</text>
  61. </view>
  62. </view>
  63. <!--menu1 END -->
  64. <!-- Notice Begin -->
  65. <view class="comm-list grid no-border shadow">
  66. <view class="notice_left" catchtap="goDetail">
  67. <block wx:if="{{notice_list.length>0}}">
  68. <view class="block">
  69. <image src="http://ro7r875ut.hn-bkt.clouddn.com/notice1.png" />
  70. <text>{{notice_list[0].created_at}}</text>
  71. <text>{{notice_list[0].title}}</text>
  72. </view>
  73. </block>
  74. <block wx:else="">
  75. <view class="block">
  76. <image src="http://ro7r875ut.hn-bkt.clouddn.com/notice2.png" />
  77. <text>暂无数据</text>
  78. </view>
  79. </block>
  80. </view>
  81. <view class="notice_right" bindtap="goNotice" wx:if="{{notice_list}}">更多></view>
  82. </view>
  83. <view class="community">
  84. 社区活动
  85. </view>
  86. <view class="event" bindtap="goEvent">
  87. <view class="community_detail">
  88. <block wx:if="{{event_list!=nil}}">
  89. <image class="event_pic" src="{{event_list.pic[0]}}" />
  90. <view class="community_left">
  91. <view class="event_title">{{event_list.title}}</view>
  92. <view class="time">
  93. <image class="timer" src="http://ro7r875ut.hn-bkt.clouddn.com/time.png" />
  94. <text>{{tools.formatData(event_list.start)}}</text>
  95. </view>
  96. </view>
  97. </block>
  98. <block wx:else="">
  99. <nodata />
  100. </block>
  101. </view>
  102. </view>
  103. <!-- Notice END -->
  104. <tabbar tabbar="{{tabbar}}" unreadCount="{{unreadCountHome}}">
  105. </tabbar>