WechatOwnerService/pages/index/index.wxml
2019-11-24 00:31:04 +08:00

70 lines
2.4 KiB
Plaintext

<import src="../common/sort_list.wxml" />
<scroll-view bindscrolltolower="lower" class="scroll-restaurants-list" scroll-y="true" style="height:100%">
<view class="heard">
<navigator url="/pages/location/location">
<view class="heard-location">
<image src="/images/location.png" class="heard-location-icon" />
<text class="heard-location-text">{{location}}</text>
</view>
</navigator>
<view class="heard-search">
<image src="/images/search.png" class="heard-search-icon" /> 搜索小区
</view>
</view>
<swiper class="categoryList" indicator-dots="true" indicator-color="rgba(228,228,228,1)" indicator-active-color="#FECA49">
<block wx:for="{{categoryList}}" wx:key="">
<swiper-item>
<block wx:for="{{item}}" wx:key="">
<view class="category-info">
<image src="{{item.src}}" class="category-image"></image>
<view class="category-text">{{item.name}}</view>
</view>
</block>
</swiper-item>
</block>
</swiper>
<swiper class="ad-swiper" indicator-dots="true" indicator-color="rgba(228,228,228,1)" indicator-active-color="#FECA49" autoplay='true' interval='5000' duration='1000' circular='true'>
<block wx:for="{{ad}}" wx:key="">
<swiper-item>
<image src="{{item.imageUrl}}"></image>
</swiper-item>
</block>
</swiper>
<view class="header-title">
<text class="new">最新动态</text>
<text class="iconfont icongengduo1 gd"></text>
</view>
<view class="noticesList">
<block wx:for="{{notices}}" wx:key="">
<navigator url="/pages/menu/menu">
<view class="noticesList-list">
<view class="notices-info">
<view class="notices-info-name">{{item.name}}</view>
<view class="notice-bottom">
<view>
<text class="iconfont iconaccount1"></text>
<text>wuxw</text>
</view>
<view>
<text class="iconfont iconyuedu"></text>
<text>1179</text>
</view>
<view>
<text class="iconfont icongood-fill"></text>
<text>37</text>
</view>
</view>
</view>
<view class="notices-info-image">
<image src="{{item.src}}" />
</view>
</view>
</navigator>
</block>
</view>
</scroll-view>