日照项目的居民端小程序
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.
 
 
 

88 lines
2.9 KiB

<scroll-view wx:if="{{ iniLoading }}"
scroll-anchoring="{{ true }}"
enable-back-to-top="{{ true }}"
bindscrolltolower="bindFilter"
scroll-y="{{true}}"
class="g-scroll_page">
<view class="select">
<view class="m-sizer">
<view class="s-status">
<picker class="picker" placeholder="全部年份" bindchange="yearPickerChange" value="{{yearIndex}}" range="{{yearArray}}"
range-key="label" data-id='{{yearArray[yearIndex].value}}'>
<text >{{yearArray[yearIndex].label}}</text>
<image src="/assets/images/common/arrow4-down.png" mode="aspectFit"></image>
</picker>
<picker class="picker " placeholder="全部月份" bindchange="mounthPickerChange" value="{{mounthIndex}}" range="{{mounthArray}}"
range-key="label" data-id='{{mounthArray[mounthIndex].value}}'>
<text >{{mounthArray[mounthIndex].label}}</text>
<image src="/assets/images/common/arrow4-down.png" mode="aspectFit"></image>
</picker>
<picker class="picker picker-type" placeholder="全部党建活动" bindchange="behaviePickerChange" value="{{behavieIndex}}" range="{{behavieArray}}"
range-key="label" data-id='{{behavieArray[behavieIndex].value}}'>
<text >{{behavieArray[behavieIndex].label}}</text>
<image src="/assets/images/common/arrow4-down.png" mode="aspectFit"></image>
</picker>
<view bind:tap="bindFilterNew" class="btn-select">
<text >筛选</text>
</view>
</view>
</view>
</view>
<view wx:if="{{ scoreList.length>0 }}">
<view class="piont-item" wx:key="index" wx:for="{{scoreList}}">
<view class="tdate">
<text>{{item.date}}</text>
</view>
<view class="lists">
<view class="m-list">
<view class="list">
<view class="item" wx:key="index" wx:for="{{item.dailyList}}">
<view class="time">{{item.time}}</view>
<view class="name">
<view class="act">{{item.title+':'+item.actTopic}}</view>
<view class="val">{{item.point}}</view>
</view>
<view class="date">{{item.remark}}</view>
</view>
</view>
</view>
</view>
</view>
</view>
<view wx:if="{{ scoreList.length !=0 && !refresh }}" class="m-more">
<text wx:if="{{ noMore }}">没有更多了</text>
<text wx:elif="{{!noMore }}">上拉查看更多</text>
</view>
<view class="m-nothing" wx:if="{{ scoreList.length ==0 && !refresh}}">
<image mode="aspectFill" class="arrow"
src="/assets/images/common/nothing.png" />
</view>
</scroll-view>
<loading showed="{{!iniLoading}}" />
<modal id="modal"></modal>