select.wxml 1.2 KB

123456789101112131415161718
  1. <van-search class="search" value="{{ params.content.where.condition }}" shape="round" placeholder="请输入搜索关键词" bind:search='startSearch' bind:clear='onClear' />
  2. <view class="total">共{{params.content.total}}个</view>
  3. <My_listBox id='ListBox' height="{{listHeight}}" bind:getlist='getList'>
  4. <navigator class="offer-list" url="#" wx:for="{{list}}" wx:key="billno" data-data="{{item}}" bindtap="submit">
  5. <view class="title">
  6. <text class="line-1">单号:{{item.billno}}</text>
  7. </view>
  8. <view class="tag-box">
  9. <van-tag custom-class='tag' wx:for="{{item.tags.systemtag}}" wx:for-item='tag' color='#FA8C16' text-color='#fff' round>{{tag}}</van-tag>
  10. <van-tag custom-class='tag' wx:for="{{item.tags.datatag}}" wx:for-item='tag' color='#FAAB16' text-color='#fff' round>{{tag}}</van-tag>
  11. </view>
  12. <view class="exp line-1">客户:<text>{{item.enterprisename}}</text></view>
  13. <view class="exp line-1">报价日期:<text>{{item.billdate}}</text></view>
  14. <view class="exp line-1">特价:<text>{{item.specialoffer==1?'是':'否'}}</text></view>
  15. </navigator>
  16. <view style="height: 230rpx;" />
  17. <My_empty wx:if="{{!list.length}}" />
  18. </My_listBox>