index.wxml 1.1 KB

12345678910111213141516171819202122232425262728
  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. <FloatingButton wx:if="{{per.query(auth,'新增')}}">
  12. <image style="width: 130rpx; height: 130rpx; 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}}' auth="{{auth}}" />
  16. <My_empty wx:if="{{list.length==0}}" />
  17. <view style="height: 50px;" />
  18. </My_listBox>
  19. <!-- 抽屉 -->
  20. <Popup sheetTitle='{{sheetTitle}}'>
  21. <Insert wx:if="{{initInsert}}" type="{{sheetTitle}}" bind:endInsert='endInsert' />
  22. </Popup>
  23. <wxs src='../../utils/wxmlQueryPer.wxs' module="per" />