|
|
@@ -23,7 +23,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==null">暂无</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"> |
|
|
|
顾问姓名:<view class="content-sec-lab1">{{item.agentName}}</view> |
|
|
@@ -92,6 +93,16 @@ |
|
|
|
}; |
|
|
|
this.$u.post("/customer/customerManagement", parames).then(data => { |
|
|
|
var list = data.results || []; |
|
|
|
|
|
|
|
list.forEach(item=>{ |
|
|
|
if(item.demand.cusSemanticWordsList!=null){ |
|
|
|
item.demand.cusSemanticWordsList.forEach(che=>{ |
|
|
|
if(che.isInterval==0){ |
|
|
|
che.name=che.name+che.unit+'-'+che.endName+che.unit; |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
this.recordList = [...this.recordList, ...list]; |
|
|
|
this.totalRecord=data.totalPage; |
|
|
|
}) |
|
|
|