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