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.
|
- <!-- 查询列表 有结果 -->
- <view class="tabTit box tc bg_f clearfix">
- <view class="flex1{{!tab[index]?' active':''}} fl" wx:for="{{tabTxt}}" wx:key="index" data-index="{{index}}" data-idss="{{item.idss}}" bindtap="filterTab">
- <text wx:if="{{index==0}}" class="{{index==idss?'active3':''}}">{{tabTxt[0].title}}</text>
- <text wx:if="{{index!=0}}" class="{{index==idss?'active3':''}}">{{item.title}}</text>
- <image src="../../static/images/arrow.png"></image>
- </view>
- </view>
- <!-- 日期 -->
- <view class="tabLayer tc" hidden="{{tab[1]}}">
- <view class="picker_group">
- <picker mode="date" value="{{date}}" end="{{date2}}" fields="day" bindchange="bindDateChange1">
- <view wx:if="{{!date}}" class="picker">开始日期</view>
- <view wx:if="{{date}}" class="picker">{{date}}</view>
- </picker>
- 至
- <picker mode="date" value="{{date2}}" start="{{date}}" fields="day" bindchange="bindDateChange2">
- <view wx:if="{{!date2}}" class="picker">结束日期</view>
- <view wx:if="{{date2}}" class="picker">{{date2}}</view>
- </picker>
- <button class='btns' data-ids="1" hover-class='active1' bindtap='search' data-index='dateindex1'>查询</button>
- </view>
- </view>
- <!-- 状态 -->
- <view class="tabLayer tc clearfix" hidden="{{tab[2]}}">
- <a class='{{status===item.id?"active2":""}}' data-ids="3" wx:for="{{statustypes}}" wx:key="index" wx:if="index" data-id="{{item.id}}" bindtap='search' data-status='{{item.status}}'>
- {{item.name}}
- </a>
- </view>
- <view class='lists'>
- <view wx:for="{{allBillList}}" wx:key="index">
- <view class="{{item.startFlag === 0 ? 'list noList' : item.startFlag === 1 ? 'list list1' : 'list'}}">
- <view class='title'>{{item.name}} </view>
- <view class='txt'>活动时间:{{item.startDate}} - {{item.endDate}}</view>
- <view class='txt'>参与条件:订单满 {{item.limitMoney}} 元</view>
- <view class='txt'>活动状态:{{item.statusStr}}</view>
- <view class="button" data-id="{{item.id}}" data-flag="{{item.startFlag}}" bindtap="viewDetail">{{item.startBtn}}</view>
- </view>
- </view>
- </view>
- <!-- </scroll-view> -->
- <view wx:if="{{allBillList.length!==0}}" class="loading {{allBillList.length==0?'mr':''}}">{{content}}</view>
-
- <!-- 查询列表 无结果 -->
- <view class='recond' wx:if="{{allBillList.length==0}}">暂无数据!</view>
|