feat(数据展示): 更新转化率组件以支持新数据结构并优化表格列

- 移除secondTop.vue中过时的注释数据
- 修改DetailedDataTable.vue表格列名以匹配新指标
- GroupRanking组件支持显示转化人数并兼容新旧数据结构
This commit is contained in:
2025-08-15 18:41:43 +08:00
parent 5f706507dd
commit a96a25355f
3 changed files with 54 additions and 97 deletions

View File

@@ -19,10 +19,10 @@
<tr>
<th>人员</th>
<th @click="sortBy('dealRate')" class="sortable">成交率 <span class="sort-icon" :class="{ active: sortField === 'dealRate' }">{{ sortOrder === 'desc' ? '↓' : '↑' }}</span></th>
<th @click="sortBy('callDuration')" class="sortable">通话时长 <span class="sort-icon" :class="{ active: sortField === 'callDuration' }">{{ sortOrder === 'desc' ? '↓' : '↑' }}</span></th>
<th>通话次数</th>
<th>成交金额</th>
<th>部门</th>
<th @click="sortBy('callDuration')" class="sortable">成交单数 <span class="sort-icon" :class="{ active: sortField === 'callDuration' }">{{ sortOrder === 'desc' ? '↓' : '↑' }}</span></th>
<th>加微率</th>
<th>入群率</th>
<th>表单填写率</th>
</tr>
</thead>
<tbody>