epmet 工作端 小程序
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.

45 lines
2.3 KiB

<!--subpages/gatherInformation/pages/gatherInformation/gatherInformation.wxml-->
<view class="search" >
<view class="filter" bind:tap="handelShow">
{{typeVal =='resi'?'居民信息采集':typeVal=='house'?'房屋信息采集':'全部信息'}} <text wx:if="{{collectTypeVal != ''}}"></text>
<!-- {{collectTypeVal =='add'?'新增':collectTypeVal =='edit'?'修改':collectTypeVal == 'del'?'删除':''}} -->
<image src="../images/down.png" mode=""/>
</view>
<view class="box">
<view class="date {{form.collectEndDate?'':'gray'}}" bind:tap="openCalendar2">
<view class="text">
<text wx:if="{{form.collectEndDate}}">{{form.collectStartDate}} {{form.collectEndDate}}</text>
<text wx:else>请选择时间</text>
</view>
<image src="../image/downG.png" mode="" wx:if="{{!form.collectEndDate}}"/>
<image src="../image/del.png" catch:tap="handelDel" style="width: 35rpx;height: 35rpx;" mode="" wx:else />
</view>
</view>
<view class="btn" bind:tap="handleClickfilter">筛选</view>
</view>
<view class="body">
<scroll-view class="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower">
<view class="content">
<view class="item" wx:for="{{tableData}}" wx:key="index">
<view class="top"> <text class="tag {{item.collectType == 'edit'?'edit':item.collectType == 'add'?'add':'del'}}">{{item.collectType == 'edit'?'修改':item.collectType == 'add'?'新增':'删除'}}</text> <text>{{item.houseName?item.houseName:'--'}}</text></view>
<view class="bto"> <view class="address">{{item.orgName}}</view> <view class="date">{{item.collectTime}}</view>
</view>
</view>
</view>
<load-more loadVisible="{{loadMoreVisible}}" loadType="{{loadMoreType}}" ></load-more>
<no-data isShow="{{nodata}}" wx:if="{{nodata}}"></no-data>
</scroll-view>
</view>
<wux-calendar id="wux-calendar" />
<wux-picker
options="{{ selectList }}"
value="{{ selectValue }}"
bind:confirm="onConfirm"
bind:valueChange="onValueChange"
visible="{{visible}}"
bind:cancel="handelHidden"
controlled
cols="2"
>
</wux-picker>