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.
 

31 lines
1.4 KiB

<!--pages/feasibility-study/feasibility-study.wxml-->
<view class="pages">
<mp-navigation-bar ext-class="set-bar" title="地块可研"></mp-navigation-bar>
<view class="tab">
<view class="tab-item {{item.id===active?'active':''}}" wx:for="{{tabList}}" wx:for-index="i" wx:for-item="item"
wx:key="id" bindtap="tabDowm" data-id="{{item.id}}">
<text class="tab-title">{{item.name}}</text>
<image class="tab-tag" src="../../assets/images/tab-tag.png"></image>
</view>
</view>
<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" bindtap="navigate">
<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>