index.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <view class="DrawerPage {{modalName=='viewModal'?'show':''}}">
  2. <van-search use-action-slot placeholder='请输入搜索关键词' shape='round' bind:search="onSearch" bind:clear="onSearch">
  3. <view slot="action" class="cuIcon-filter search-right" bindtap="showModal" data-target="viewModal">
  4. 筛选
  5. </view>
  6. </van-search>
  7. <van-tabs color='var(--assist)' title-active-color='var(--assist)' bind:change="tabsChange">
  8. <van-tab title="全部" />
  9. <van-tab title="新建" />
  10. <van-tab title="预提交" />
  11. <van-tab title="提交" />
  12. <van-tab title="确认" />
  13. <van-tab title="审核" />
  14. <van-tab title="手工关闭" />
  15. <van-tab title="关闭" />
  16. </van-tabs>
  17. <view class="tips">
  18. 共计{{total}}单,合计{{handleHide.query(amount,hidePrice)}}元
  19. </view>
  20. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  21. <List list="{{list}}" hidePrice='{{hidePrice}}' />
  22. <view style="height:150rpx;" />
  23. </Yl_ListBox>
  24. <!-- <Float wx:if="{{isInsert}}" /> -->
  25. <Yl_FloatingButton wx:if="{{isInsert}}" bindtap="createOrder" />
  26. </view>
  27. <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
  28. <text class="cuIcon-pullright"></text>
  29. </view>
  30. <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
  31. <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
  32. <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
  33. </view>
  34. <view style="height: 200rpx;" />
  35. </scroll-view>
  36. <wxs src="/utils/hidePrice.wxs" module="handleHide" />