index.wxml 1.2 KB

123456789101112131415161718192021222324252627
  1. <Yl_nav search list='{{navList}}' sort='{{content.sort}}' bind:onClick='navClick' bindonSearch="onSearch" />
  2. <view class="total">共{{content.total}}个</view>
  3. <!-- 显示类型 -->
  4. <van-action-sheet show="{{ classShow }}" actions="{{ classList }}" bind:cancel='classCancel' bind:close='classCancel' bind:select='classSelect' cancel-text="取消" />
  5. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  6. <List list='{{list}}' />
  7. <view style="height: 80rpx;" />
  8. </Yl_ListBox>
  9. <!-- 筛选条件 -->
  10. <Yl_filtrate show="{{filter.show}}" bind:handle="handleFilter">
  11. <view class="groud">
  12. <view class="label">
  13. 时间范围
  14. </view>
  15. <view class="content time">
  16. <picker mode="date" bindchange='changeDate' data-name="startdate">
  17. <view class="tbox">{{filter.startdate||'开始时间'}}</view>
  18. </picker>
  19. <view class="partition">-</view>
  20. <picker mode="date" bindchange='changeDate' data-name="enddate">
  21. <view class="tbox">{{filter.enddate||"结束时间"}}</view>
  22. </picker>
  23. </view>
  24. </view>
  25. </Yl_filtrate>
  26. <!-- 浮动按钮 -->
  27. <Yl_FloatingButton wx:if="{{insert}}" bindtap="addPublicCustomer" />