|
|
@@ -15,7 +15,15 @@ |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="content"> |
|
|
|
<view class="content-tips" v-for="(item,index) in recordList" :key='index' @click="gotoDetail(item.id)"> |
|
|
|
<view v-if="recordList.length==0" style="width: 100%;height: 100%;display: flex;align-items: center;"> |
|
|
|
<view style="width: 100%;padding-top: 200rpx;"> |
|
|
|
<view style="width: 100%;text-align: center;"> |
|
|
|
<image style="width: 220rpx;height: 200rpx;" src="https://static.quhouse.com/zhikong_xcx_img/nodatalist.png" mode=""></image> |
|
|
|
</view> |
|
|
|
<view style="text-align: center;width: 100%;margin-top: 20rpx;color: #999999;">暂无数据</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view v-if="recordList.length!=0" class="content-tips" v-for="(item,index) in recordList" :key='index' @click="gotoDetail(item.id)"> |
|
|
|
<view class="content-first"> |
|
|
|
<view class="left"> |
|
|
|
<view class="img">{{item.name.slice(0,1)}}</view> |
|
|
@@ -33,7 +41,8 @@ |
|
|
|
</view> |
|
|
|
<view class="content-sec-lab"> |
|
|
|
客户标签: |
|
|
|
<!-- <view class="content-sec-tips" v-for="(che,ind) in item.demand.cusSemanticWords" :key='ind'>{{che.name}}</view> --> |
|
|
|
<text v-if="item.demand.cusSemanticWordsList.length==0">暂无</text> |
|
|
|
<view v-else class="content-sec-tips" v-for="(che,ind) in item.demand.cusSemanticWordsList" :key='ind'>{{che.name}}</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
<view class="content-sec-lab"> |
|
|
@@ -43,7 +52,7 @@ |
|
|
|
添加时间:<view class="content-sec-lab1">{{item.createTime}}</view> |
|
|
|
</view> |
|
|
|
<view class="content-sec-num"> |
|
|
|
<view class="">{{item.visitRecord}}次到访</view> |
|
|
|
<view class="">{{item.visitRecord || '--'}}次到访</view> |
|
|
|
<view class="">{{item.fraction || '0'}}% | {{item.fraction || '0'}}分</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|