index.wxml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!--index.wxml-->
  2. <view class="wrap">
  3. <view class="item">
  4. <view class="item_r flex">
  5. <view class="time" bind:tap="beginTimeFun">{{ begin_at }}</view>
  6. <view class="line"></view>
  7. <view class="time" bind:tap="endTimeFun">{{ end_at }}</view>
  8. </view>
  9. <view class="item_search" bind:tap="bindSearch">查询</view>
  10. </view>
  11. <view class="item flex-start">优惠券总数量:{{ couponsNum }}</view>
  12. <view class="item flex-start">优惠券总金额:{{ couponsTotalPrice }}</view>
  13. </view>
  14. <!-- loading -->
  15. <van-overlay show="{{ loading }}" z-index="100">
  16. <van-loading custom-class="custom_loading" />
  17. </van-overlay>
  18. <!-- 开始时间 -->
  19. <van-popup show="{{ showBegin }}" position="bottom">
  20. <van-datetime-picker
  21. type="date"
  22. title="选择开始时间"
  23. value="{{ currentBegin }}"
  24. bind:confirm = "confirmBeginTime"
  25. bind:cancel = "closeBeginTimePop"
  26. />
  27. </van-popup>
  28. <!-- 选择结束时间 -->
  29. <van-popup show="{{ showEnd }}" position="bottom">
  30. <van-datetime-picker
  31. type="date"
  32. title="选择结束时间"
  33. value="{{ currentEnd }}"
  34. bind:confirm = "confirmEndTime"
  35. bind:cancel = "closeEndTimePop"
  36. />
  37. </van-popup>