viewPage.wxml 735 B

1234567891011121314
  1. <van-search value="{{ content.where.condition }}" bind:change='searchInput' bind:clear='searchClear' shape="round" background="var(--bgColor)" placeholder="搜索文件" />
  2. <van-tabs class="tabs" color='var(--assist)' bind:change='tabsChange' title-active-color='var(--assist)' sticky>
  3. <van-tab title="列表" />
  4. <van-tab title="收藏夹" />
  5. <view slot='nav-right' class="switch">
  6. <My_switch bindchange='changeSwitch' />
  7. </view>
  8. </van-tabs>
  9. <My_listBox id="ListBox" height='{{listHeight}}' bind:getlist='getList'>
  10. <view class="unread">总共{{inTotal}}个,有1个更新</view>
  11. <My_files list="{{list}}" />
  12. <My_empty wx:if="{{list.length==0}}" />
  13. <view style="height: 200rpx;" />
  14. </My_listBox>