sentandback.wxml 1.4 KB

123456789101112131415161718192021222324252627
  1. <van-search use-action-slot placeholder='请输入搜索关键词' shape='round' bind:search="onSearch" bind:clear="onSearch" />
  2. <van-tabs active="{{ content.where.type }}" color='var(--assist)' title-active-color='var(--assist)' bind:change="tabsChange">
  3. <van-tab title="全部" name='' />
  4. <van-tab title="发货" name='发货' />
  5. <van-tab title="退货" name='退货' />
  6. </van-tabs>
  7. <view class="head">
  8. <picker mode="date" value="{{content.where.begindate}}" data-name="begindate" bindchange='changeDate'>{{content.where.begindate||'开始日期'}}</picker>
  9. <text>-</text>
  10. <picker mode="date" value="{{content.where.enddate}}" data-name="enddate" bindchange='changeDate'>{{content.where.enddate||'结束日期'}}</picker>
  11. <text wx:if="{{content.where.begindate||content.where.enddate}}" style="color:var( --assist);" bindtap="initialize">重置</text>
  12. </view>
  13. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  14. <Yl_Empty wx:if="{{list.length==0}}" />
  15. <navigator url='#' data-item="{{item}}" bindtap="toDetail" class="item" wx:for="{{list}}" wx:key="sa_dispatchid">
  16. <view class="title">
  17. {{item.type}} / {{item.billno}} / {{item.date}}
  18. </view>
  19. <view class="product">
  20. <Item userrole='{{userrole}}' item="{{item}}" />
  21. <Item userrole='{{userrole}}' borderTop wx:for="{{item.productList}}" wx:for-item="it" item="{{it}}" />
  22. </view>
  23. </navigator>
  24. <view style="height:150rpx;" />
  25. </Yl_ListBox>
  26. <wxs src="/utils/hidePrice.wxs" module="handleHide" />