index.wxml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.verify(amount,'订货单列表金额',privacyFieldC)}}元
  19. </view>
  20. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  21. <List list="{{list}}" privacyFieldC='{{privacyFieldC}}' />
  22. <view style="height:150rpx;" />
  23. </Yl_ListBox>
  24. <!-- <Float wx:if="{{isInsert}}" /> -->
  25. <!-- <Yl_FloatingButton wx:if="{{isInsert}}" bindtap="createOrder" /> -->
  26. <view class="footer" wx:if="{{isInsert}}">
  27. <van-button custom-class='but' bindtap="createOrder">新建订单</van-button>
  28. </view>
  29. </view>
  30. <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
  31. <text class="cuIcon-pullright"></text>
  32. </view>
  33. <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
  34. <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
  35. <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
  36. </view>
  37. <view style="height: 200rpx;" />
  38. </scroll-view>
  39. <wxs src="/utils/hidePrice.wxs" module="handleHide" />