fix: 修复表单数据处理逻辑并更新UI文本显示
修复表单数据从对象到数组的格式兼容处理,确保新旧数据格式都能正确显示 更新多处UI文本描述,包括"今日通话"改为"本期通话"、"月度总业绩"改为"本月成交单数" 调整客户阶段筛选逻辑,排除'待加微'客户对'待填表单'和'待到课'的影响 修复未分配通话记录API端点错误
This commit is contained in:
@@ -24,10 +24,10 @@
|
||||
团队总业绩
|
||||
<span class="info-icon" @mouseenter="showTooltip($event, 'teamPerformance')" @mouseleave="hideTooltip">ⓘ</span>
|
||||
</span>
|
||||
<span class="card-trend positive">{{ totalPerformance.team_current_vs_previous_deals }} vs 上期</span>
|
||||
<span class="card-trend positive">{{ totalPerformance.team_current_vs_previous_period_deals_comparison }} vs 上期</span>
|
||||
</div>
|
||||
<div class="card-value">{{ totalPerformance.current_team_odd_numbers||0 }}</div>
|
||||
<div class="card-subtitle">月目标完成率: {{ totalPerformance.team_monthly_performance }}</div>
|
||||
<div class="card-subtitle">月目标完成率: {{ totalPerformance.team_monthly_target_completion_rate }}</div>
|
||||
</div>
|
||||
|
||||
<div class="overview-card">
|
||||
@@ -48,7 +48,7 @@
|
||||
团队转化率
|
||||
<span class="info-icon" @mouseenter="showTooltip($event, 'conversionRate')" @mouseleave="hideTooltip">ⓘ</span>
|
||||
</span>
|
||||
<span class="card-trend positive">{{ conversionRate.team_current_vs_previous_deals }} vs 上期</span>
|
||||
<span class="card-trend positive">{{ conversionRate.team_current_vs_previous_conversion_rate }} vs 上期</span>
|
||||
</div>
|
||||
<div class="card-value">{{ conversionRate.center_conversion_rate }}</div>
|
||||
<div class="card-subtitle">团队平均转化率: {{ conversionRate.average_conversion_rate }}</div>
|
||||
|
||||
@@ -65,7 +65,7 @@
|
||||
:formCompletionRate="statisticalIndicators.formCompletionRate"
|
||||
/>
|
||||
<!-- 新增:业绩周期对比组件 -->
|
||||
<div v-if="cardVisibility.performanceComparison" class="performance-comparison-section">
|
||||
<div v-if="false" class="performance-comparison-section">
|
||||
<PerformanceComparison :current-period-data="currentPeriodMetrics" />
|
||||
</div>
|
||||
<!-- Bottom Section -->
|
||||
|
||||
Reference in New Issue
Block a user