fix(api): 修正二阶分析报告接口路径错误
refactor(views): 重构阶段分析报告展示逻辑,使用新接口数据格式 feat(analytics): 添加umami网站统计脚本 feat(api): 新增优秀录音文件获取接口 style(views): 优化分析报告样式和布局
This commit is contained in:
@@ -84,7 +84,7 @@
|
||||
@select-group="selectGroup"
|
||||
/>
|
||||
</div>
|
||||
<GoodMusic style="height: 300px;" :abnormalData="teamAlerts" />
|
||||
<GoodMusic style="height: 300px;" :qualityCalls="excellentRecord" />
|
||||
<!-- Right Section - Group Comparison -->
|
||||
<div v-if="cardVisibility.groupComparison" class="right-section">
|
||||
<GroupComparison
|
||||
@@ -212,8 +212,8 @@ import Loading from '@/components/Loading.vue'
|
||||
import PerformanceComparison from './components/PerformanceComparison.vue'; // 1. 导入新组件
|
||||
import { getOverallTeamPerformance,getTotalGroupCount,getConversionRate,getTotalCallCount,
|
||||
getNewCustomer,getDepositConversionRate,getActiveCustomerCommunicationRate,getAverageAnswerTime,
|
||||
getTimeoutRate,getTableFillingRate,getUrgentNeedToAddress,getTeamRanking,getTeamRankingInfo,getAbnormalResponseRate,getTeamSalesFunnel } from '@/api/senorManger.js'
|
||||
import { getExcellentRecordFile } from '@/api/top.js'
|
||||
getTimeoutRate,getTableFillingRate,getUrgentNeedToAddress,getTeamRanking,getTeamRankingInfo,
|
||||
getAbnormalResponseRate,getTeamSalesFunnel,getExcellentRecordFile } from '@/api/senorManger.js'
|
||||
import { useUserStore } from '@/stores/user.js'
|
||||
import FeedbackForm from "@/components/FeedbackForm.vue";
|
||||
|
||||
@@ -274,6 +274,7 @@ async function CenterExcellentRecord() {
|
||||
const cacheKey = getCacheKey('CenterExcellentRecord', params);
|
||||
const result = await withCache(cacheKey, async () => {
|
||||
const res = await getExcellentRecordFile(params);
|
||||
console.log(6666666666,res);
|
||||
return res.data;
|
||||
});
|
||||
excellentRecord.value = result;
|
||||
|
||||
Reference in New Issue
Block a user