index.wxml 1.0 KB

1234567891011121314151617181920212223242526
  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-tab title="丢单" /> -->
  8. <van-tab title="已无效" />
  9. </van-tabs>
  10. <!-- 浮动按钮 -->
  11. <Yl_FloatingButton wx:if="{{per.query(auth,'新增')}}" radius='32' bindtap="openSheet" />
  12. <My_listBox id='ListBox' bindgetlist="getList" height='{{scrollHeight}}'>
  13. <List list='{{list}}' tagColor='{{tagColor}}' auth="{{auth}}" />
  14. <My_empty wx:if="{{list.length==0}}" />
  15. <view style="height: 50px;" />
  16. </My_listBox>
  17. <!-- 抽屉 -->
  18. <Popup sheetTitle='{{sheetTitle}}'>
  19. <Insert wx:if="{{initInsert}}" type="{{sheetTitle}}" bind:endInsert='endInsert' />
  20. </Popup>
  21. <wxs src='../../utils/wxmlQueryPer.wxs' module="per" />