|
|
@@ -91,23 +91,23 @@ |
|
|
|
<view class="statistics-title"> |
|
|
|
接待统计 |
|
|
|
</view> |
|
|
|
<template v-if="weekObj.customerInfo1.length - weekObj.customerInfo2.length != 0"> |
|
|
|
<template v-if="weekObj.customerInfo1 && weekObj.customerInfo2"> |
|
|
|
<view class="statistics-desc"> |
|
|
|
<text> |
|
|
|
顾问平均执行率对比上周 |
|
|
|
</text> |
|
|
|
<text> |
|
|
|
{{ rankTop('ranktype') }} |
|
|
|
{{ rankTop('ranktype') || '' }} |
|
|
|
</text> |
|
|
|
<text :class="[rankTop('class')]">{{ rankTop('people') }}</text> |
|
|
|
<text :class="[rankTop('class')]">{{ rankTop('people') || '' }}</text> |
|
|
|
<text class=""> |
|
|
|
人,其中{{ rankTop('topName') }}上升 |
|
|
|
人,其中{{ rankTop('topName') || '' }}上升 |
|
|
|
</text> |
|
|
|
<text class="up">{{ rankTop('topPk') }}</text> |
|
|
|
<text class="up">{{ rankTop('topPk') || '' }}</text> |
|
|
|
<text class=""> |
|
|
|
%为最高,{{ rankTop('lastName') }}下降 |
|
|
|
%为最高,{{ rankTop('lastName') || '' }}下降 |
|
|
|
</text> |
|
|
|
<text class="down">{{ rankTop('lastPk') }}</text> |
|
|
|
<text class="down">{{ rankTop('lastPk') || '' }}</text> |
|
|
|
<text class=""> |
|
|
|
%降幅最大。 |
|
|
|
</text> |
|
|
@@ -394,7 +394,8 @@ |
|
|
|
onLoad(option) { |
|
|
|
if (option.id) this.id = option.id |
|
|
|
this.getMessage() |
|
|
|
console.log(this.rankTop(this.weekObj), '12312312312') |
|
|
|
console.log(this.weekObj, '12312312312') |
|
|
|
console.log(JSON.stringify(this.weekObj), '12312312312') |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|