| 123456789101112131415161718192021 |
- <view class="head">
- <view class="count">
- {{language['总共']||'总共'}} {{content.total}} {{language['个']||'个'}}
- </view>
- <view class="expand">
- <van-search wx:if="{{showSearch}}" custom-class='custom-class' focus='{{focus}}' value="{{ condition }}" shape="round" bind:change='onChange' bind:search='onSearch' bind:clear='onSearch' placeholder="搜索关键词" background='#F4F5F7' />
- <navigator url="#" class="but" bindtap="toSearch">
- <van-icon name="search" />
- </navigator>
- <navigator wx:if="{{!disabled}}" url="#" class="but" bindtap="addConfirmBill">
- <van-icon name="plus" />
- </navigator>
- </view>
- </view>
- <t-cell wx:for="{{list}}" wx:key="sa_workorder_confirmationid" title="{{item.confirmationno}}" data-item="{{item}}" hover arrow bind:click="toConfirmBill">
- <view slot="note" style="color:{{sColors[item.status]}};">
- {{language[item.status]||item.status}}
- </view>
- </t-cell>
- <Yl_Empty wx:if="{{list.length==0}}" />
|