123456789101112131415161718192021 |
- <Search bindinputSharch='inputSharch' />
- <van-tabs class="tabs" active="{{ content.where.status }}" tab-class='tab-class' color='#3874F6' title-active-color='#3874F6' bind:change="tabsChange">
- <van-tab title="待跟进" />
- <van-tab title="跟进中" />
- <van-tab title="已成交" />
- <van-tab title="已过期" />
- <van-tab title="丢单" />
- <van-tab title="无效" />
- </van-tabs>
- <!-- 浮动按钮 -->
- <FloatingButton>
- <image style="width: 100rpx; height: 100rpx; transform: translate(-50%,-50%);" src='../../static/image/add.png' />
- </FloatingButton>
- <My_listBox id='ListBox' bindgetlist="getList" height='{{scrollHeight}}'>
- <List list='{{list}}' tagColor='{{tagColor}}' />
- <My_empty wx:if="{{list.length==0}}" />
- <view style="height: 50px;" />
- </My_listBox>
|