|
@@ -0,0 +1,50 @@
|
|
|
+<view class="header">
|
|
|
+ <view>
|
|
|
+ <view class="label">线索状态</view>
|
|
|
+ <view class="con">{{detailsData.status}}</view>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <view class="label">客户名称</view>
|
|
|
+ <view class="con line-1">{{detailsData.name}}</view>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <view class="label">手机号码</view>
|
|
|
+ <view class="con">{{detailsData.phonenumber}}</view>
|
|
|
+ </view>
|
|
|
+</view>
|
|
|
+<van-tabs sticky color='#3874F6' title-active-color='#3874F6' tab-class='tab-class'>
|
|
|
+ <van-tab title="线索详情">
|
|
|
+ <Details detailsData='{{detailsData}}' />
|
|
|
+ </van-tab>
|
|
|
+ <van-tab title="跟进记录">
|
|
|
+ <view class="filtrate">
|
|
|
+ <view class="date" bindtap="openSelectDate">{{showWhere}}
|
|
|
+ <van-icon style="margin-left: 8rpx;" name="arrow-down" />
|
|
|
+ </view>
|
|
|
+ <view class="sort" bindtap="changeIsdesc">
|
|
|
+ <text class="iconfont {{ isdesc==1?'icon-jiangxu':'icon-shengxu' }}" />
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <Record followList='{{followList}}' />
|
|
|
+ <My_empty wx:if="{{followList.length==0}}" />
|
|
|
+ </van-tab>
|
|
|
+</van-tabs>
|
|
|
+
|
|
|
+
|
|
|
+<van-action-sheet show="{{ timeRangeShow }}" bind:close='timeRangeClose'>
|
|
|
+ <view class="detePickerHeader">
|
|
|
+ <text catchtap="toSeeAll">所有日期</text>
|
|
|
+ <view class="type" catchtap="selectDateType">
|
|
|
+ <view class="option {{whereType.value=='start'?'active-op':''}}" data-name="start">
|
|
|
+ <view data-name="start">开始</view>
|
|
|
+ <view data-name="start" class="time">{{whereType.list.start||'开始时间'}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="option {{whereType.value=='end'?'active-op':''}}" data-name="end">
|
|
|
+ <view data-name="end">结束</view>
|
|
|
+ <view data-name="end" class="time">{{whereType.list.end||'结束时间'}}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <text catchtap="determineScope">确定</text>
|
|
|
+ </view>
|
|
|
+ <My_datePicker bind:getDate='getDate' />
|
|
|
+</van-action-sheet>
|