| 1234567891011121314151617181920212223242526272829303132333435 |
- <van-search value="{{ content.where.condition }}" shape='round' placeholder="请输入搜索关键词" use-action-slot bind:clear='onClear' bind:search="startSearch">
- <navigator url="#" slot="action" class="iconfont icon-shaixuan" bindtap="openFiltrate">
- 筛选
- </navigator>
- </van-search>
- <view class="top" />
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <!-- <view class="unread">总共{{total}}条</view> -->
- <navigator class="list-box" url="/packageA/deliveryConfirmation/detail?id={{item.st_stockbillid}}" wx:for="{{list}}" wx:key="st_stockbillid">
- <view class="title">{{item.billno}}</view>
- <view class="row">
- 红蓝字:{{item.rb ? '蓝' : '红'}}字
- </view>
- <view class="row">
- 单据日期:{{item.billdate}}
- </view>
- <view class="row">
- 联系人:{{item.createby || ' --'}}
- </view>
- <view class="row">
- 地址:{{item.address || ' --'}}
- </view>
- <view class="row">
- 备注:{{item.remarks || ' --'}}
- </view>
- <view class="row">
- 是否收货:{{item.isreceiver ?'已收货':'未收货'}}
- </view>
- </navigator>
- <Yl_Empty wx:if="{{!list.length}}" />
- </Yl_ListBox>
- <Yl_Filtrate show='{{filtrate}}' list="{{filtratelist}}" bindhandle="handleFilter" />
|