index.wxml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <Search bind:inputSharch='inputSharch' bind:selectSort='selectSort' />
  2. <van-tabs class="tabs" active="{{ content.where.status }}" tab-class='tab-class' color='#3874F6' title-active-color='#3874F6' bind:change="tabsChange">
  3. <van-tab title="待跟进" />
  4. <van-tab title="跟进中" />
  5. <van-tab title="已成交" />
  6. <van-tab title="已过期" />
  7. <van-tab title="丢单" />
  8. <van-tab title="无效" />
  9. </van-tabs>
  10. <!-- 浮动按钮 -->
  11. <FloatingButton>
  12. <image style="width: 100rpx; height: 100rpx; transform: translate(-50%,-50%);" src='../../static/image/add.png' data-title="新建线索" bindtap="openSheet" />
  13. </FloatingButton>
  14. <My_listBox id='ListBox' bindgetlist="getList" height='{{scrollHeight}}'>
  15. <List list='{{list}}' tagColor='{{tagColor}}' />
  16. <My_empty wx:if="{{list.length==0}}" />
  17. <view style="height: 50px;" />
  18. </My_listBox>
  19. <!-- 抽屉 -->
  20. <van-popup class="popup" show="{{ sheetTitle }}" custom-style="height: 100vh;" position="bottom" round closeable bind:close='sheetClose'>
  21. <view class="header">{{sheetTitle}}</view>
  22. <scroll-view scroll-y style="height:{{scrollHeight}}rpx;">
  23. <Insert wx:if="{{initInsert}}" bind:endInsert='endInsert' />
  24. </scroll-view>
  25. </van-popup>