123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <!--index.wxml-->
- <wxs src="../../../utils/util.wxs" module="tools"></wxs>
- <view class="container">
- <view class='list-msg'>
- <view class="changeBtn" bindtap="goMyhouse">
- <image class="changePic" src="http://ro7r875ut.hn-bkt.clouddn.com/house.png"></image>
- </view>
- <text>{{garden_name}}</text>
- <text>{{house_name}}</text>
- </view>
- </view>
- <!--menu1 begin-->
- <view class="comm-list grid col-4 no-border comm-list-menu1" style="margin-top:{{-360+customBar}}rpx;">
- <view class="item" bindtap="goLivingPay">
- <view class="item-circle">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/propertyfee.png"></image>
- </view>
- <text>生活缴费</text>
- </view>
- <view class="item" bindtap="goHouse">
- <view class="item-circle">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/houserent.png"></image>
- </view>
- <text>房屋租售</text>
- </view>
- <view class="item" bindtap="goRepair">
- <view class="item-circle">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/repair.png"></image>
- </view>
- <text>报事报修</text>
- </view>
- <view class="item" bindtap="goSuggestion">
- <view class="item-circle">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/complaint.png"></image>
- </view>
- <text>投诉建议</text>
- </view>
- <view class="item" bindtap="goNotice">
- <view class="item-circle">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/notice.png"></image>
- </view>
- <text>小区公告</text>
- </view>
- <view class="item" bindtap="goVote">
- <view class="item-circle">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/vote.png"></image>
- </view>
- <text>投票活动</text>
- </view>
- <view class="item" bindtap="goServicePhone">
- <view class="item-circle">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/serviceCall.png"></image>
- </view>
- <text>服务电话</text>
- </view>
- <view class="item" bindtap="goAllServe">
- <view class="item-circle">
- <image src="/images/all.png"></image>
- </view>
- <text>全部服务</text>
- </view>
- </view>
- <!--menu1 END -->
- <!-- Notice Begin -->
- <view class="comm-list grid no-border shadow">
- <view class="notice_left" catchtap="goDetail">
- <block wx:if="{{notice_list.length>0}}">
- <view class="block">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/notice1.png" />
- <text>{{notice_list[0].created_at}}</text>
- <text>{{notice_list[0].title}}</text>
- </view>
- </block>
- <block wx:else="">
- <view class="block">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/notice2.png" />
- <text>暂无数据</text>
- </view>
- </block>
- </view>
- <view class="notice_right" bindtap="goNotice" wx:if="{{notice_list}}">更多></view>
- </view>
- <view class="community">
- 社区活动
- </view>
- <view class="event" bindtap="goEvent">
- <view class="community_detail">
- <block wx:if="{{event_list!=nil}}">
- <image class="event_pic" src="{{event_list.pic[0]}}" />
- <view class="community_left">
- <view class="event_title">{{event_list.title}}</view>
- <view class="time">
- <image class="timer" src="http://ro7r875ut.hn-bkt.clouddn.com/time.png" />
- <text>{{tools.formatData(event_list.start)}}</text>
- </view>
- </view>
- </block>
- <block wx:else="">
- <nodata />
- </block>
- </view>
- </view>
- <!-- Notice END -->
- <tabbar tabbar="{{tabbar}}" unreadCount="{{unreadCountHome}}">
- </tabbar>
|