index.wxml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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="head"></view>
  18. <!-- <view class="tips">
  19. 共计{{total}}单,合计{{handleHide.query(amount,hidePrice)}}元
  20. </view> -->
  21. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  22. <List list="{{list}}" hidePrice='{{hidePrice}}' />
  23. <view style="height:150rpx;" />
  24. </Yl_ListBox>
  25. <!-- <Float wx:if="{{isInsert}}" /> -->
  26. <Yl_FloatingButton wx:if="{{isInsert}}" bindtap="createOrder" />
  27. </view>
  28. <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
  29. <text class="cuIcon-pullright"></text>
  30. </view>
  31. <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
  32. <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
  33. <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
  34. </view>
  35. <view style="height: 200rpx;" />
  36. </scroll-view>
  37. <wxs src="/utils/hidePrice.wxs" module="handleHide" />