| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!--index.wxml-->
- <view class="wrap">
- <view class="item">
- <view class="item_r flex">
- <view class="time" bind:tap="beginTimeFun">{{ begin_at }}</view>
- <view class="line"></view>
- <view class="time" bind:tap="endTimeFun">{{ end_at }}</view>
- </view>
- <view class="item_search" bind:tap="bindSearch">查询</view>
- </view>
- <view class="item flex-start">优惠券总数量:{{ couponsNum }}</view>
- <view class="item flex-start">优惠券总金额:{{ couponsTotalPrice }}</view>
- </view>
- <!-- loading -->
- <van-overlay show="{{ loading }}" z-index="100">
- <van-loading custom-class="custom_loading" />
- </van-overlay>
- <!-- 开始时间 -->
- <van-popup show="{{ showBegin }}" position="bottom">
- <van-datetime-picker
- type="date"
- title="选择开始时间"
- value="{{ currentBegin }}"
- bind:confirm = "confirmBeginTime"
- bind:cancel = "closeBeginTimePop"
- />
- </van-popup>
- <!-- 选择结束时间 -->
- <van-popup show="{{ showEnd }}" position="bottom">
- <van-datetime-picker
- type="date"
- title="选择结束时间"
- value="{{ currentEnd }}"
- bind:confirm = "confirmEndTime"
- bind:cancel = "closeEndTimePop"
- />
- </van-popup>
|