rows.wxml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <van-search use-action-slot placeholder='请输入搜索关键词' shape='round' bind:search="onSearch" bind:clear="onSearch" />
  2. <!-- <view class="head">
  3. <picker mode="date" value="{{content.where.begindate}}" data-name="begindate" bindchange='changeDate'>{{content.where.begindate||'开始日期'}}</picker>
  4. <text>-</text>
  5. <picker mode="date" value="{{content.where.enddate}}" data-name="enddate" bindchange='changeDate'>{{content.where.enddate||'结束日期'}}</picker>
  6. <text wx:if="{{content.where.begindate||content.where.enddate}}" style="color:var( --assist);" bindtap="initialize">重置</text>
  7. </view> -->
  8. <!-- <van-tabs active="{{ active }}" color='var(--assist)' title-active-color='var(--assist)' bind:change="tabsChange">
  9. <van-tab title="全部" name='' />
  10. <van-tab title="全部未发" name='' />
  11. <van-tab title="7日未发" name='7' />
  12. <van-tab title="30日未发" name='30' />
  13. <van-tab title="90日未发" name='90' />
  14. </van-tabs> -->
  15. <van-tabs active="{{ active }}" color='var(--assist)' title-active-color='var(--assist)' bind:change="tabsChange">
  16. <van-tab title="全部" name='' />
  17. <van-tab title="待确认" name='待确认' />
  18. <van-tab title="待审核" name='待审核' />
  19. <van-tab title="待发货" name='待发货' />
  20. <van-tab title="已发货" name='已发货' />
  21. <van-tab title="已取消" name='已取消' />
  22. </van-tabs>
  23. <view class="top" style="height: 5px;" />
  24. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  25. <Yl_Empty wx:if="{{list.length==0}}" />
  26. <view class="item" wx:for="{{list}}" wx:key="sa_orderitemsid">
  27. <view class="title">
  28. {{item.type+' '+item.sonum}} / {{item.billdate}}
  29. </view>
  30. <!-- <view>
  31. 单据日期:
  32. </view> -->
  33. <view class="product">
  34. <Item userrole='{{userrole}}' item="{{item}}" />
  35. <Item userrole='{{userrole}}' borderTop wx:for="{{item.productList}}" wx:for-item="it" item="{{it}}" />
  36. </view>
  37. </view>
  38. <view style="height:150rpx;" />
  39. </Yl_ListBox>