index.wxml 865 B

12345678910111213141516171819202122
  1. <Search bind:inputSharch='inputSharch' bind:selectSort='selectSort' isReverse='{{isReverse}}' />
  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-tabs>
  8. <!-- 浮动按钮 -->
  9. <Yl_FloatingButton wx:if="{{isInsert}}" radius='32' bindtap="openSheet" />
  10. <My_listBox id='ListBox' bindgetlist="getList" height='{{scrollHeight}}'>
  11. <List list='{{list}}' tagColor='{{tagColor}}' />
  12. <My_empty wx:if="{{list.length==0}}" />
  13. <view style="height: 50px;" />
  14. </My_listBox>
  15. <!-- 抽屉 -->
  16. <Popup sheetTitle='{{sheetTitle}}'>
  17. <Insert wx:if="{{initInsert}}" type="{{sheetTitle}}" bind:endInsert='endInsert' />
  18. </Popup>