You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.0 KiB

4 years ago
<!--pages/land-promotion/land-promotion.wxml-->
<view class="pages">
<mp-navigation-bar ext-class="set-bar" title="土地推介"></mp-navigation-bar>
<view class="search-box">
<image src="../../assets/images/search-mini.png"></image>
<input type="text" placeholder="请搜索" placeholder-class="placeholder" />
</view>
<view class="main">
<scroll-view class="list" scroll-y="true" refresher-enabled refresher-triggered="{{refresher}}"
bindscrolltolower="getList" bindrefresherrefresh="refresh">
<view class="list-item" wx:for="{{list}}" wx:for-index="i" wx:for-item="item">
<image class="list-img"
src="https://ss0.baidu.com/94o3dSag_xI4khGko9WTAnF6hhy/zhidao/pic/item/cb8065380cd791230f4870a5ac345982b3b780b3.jpg">
</image>
<view class="list-info">
<view class="list-title one-title">
{{item.title}}
</view>
<view class="list-timer">挂牌日期:{{item.timer}}</view>
</view>
</view>
</scroll-view>
</view>
</view>