index.wxml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <van-search value="{{ content.where.condition }}" shape='round' placeholder="请输入搜索关键词" use-action-slot bind:clear='onClear' bind:search="startSearch">
  2. <navigator url="#" slot="action" class="iconfont icon-shaixuan" bindtap="openFiltrate">
  3. 筛选
  4. </navigator>
  5. </van-search>
  6. <view class="top" />
  7. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  8. <!-- <view class="unread">总共{{total}}条</view> -->
  9. <navigator class="list-box" url="/packageA/deliveryConfirmation/detail?id={{item.st_stockbillid}}" wx:for="{{list}}" wx:key="st_stockbillid">
  10. <view class="title">{{item.billno}}</view>
  11. <view class="row">
  12. 红蓝字:{{item.rb ? '蓝' : '红'}}字
  13. </view>
  14. <view class="row">
  15. 单据日期:{{item.billdate}}
  16. </view>
  17. <view class="row">
  18. 联系人:{{item.createby || ' --'}}
  19. </view>
  20. <view class="row">
  21. 地址:{{item.address || ' --'}}
  22. </view>
  23. <view class="row">
  24. 备注:{{item.remarks || ' --'}}
  25. </view>
  26. <view class="row">
  27. 是否收货:{{item.isreceiver ?'已收货':'未收货'}}
  28. </view>
  29. </navigator>
  30. <Yl_Empty wx:if="{{!list.length}}" />
  31. </Yl_ListBox>
  32. <Yl_Filtrate show='{{filtrate}}' list="{{filtratelist}}" bindhandle="handleFilter" />