index.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. </view>
  26. <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
  27. <text class="cuIcon-pullright"></text>
  28. </view>
  29. <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
  30. <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
  31. <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
  32. </view>
  33. <view style="height: 200rpx;" />
  34. </scroll-view>
  35. <wxs src="/utils/hidePrice.wxs" module="handleHide" />