|
@@ -125,14 +125,15 @@
|
|
|
import { computed, defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
|
import { formatDate } from '@/utils/formatTime';
|
|
|
import {
|
|
|
- statisticsOrderHotDetailExport,
|
|
|
- statisticsOrderHotDetail,
|
|
|
- statisticsOrderHotSatisfyDetail,
|
|
|
- statisticsOrderHotSatisfyDetailExport,
|
|
|
- statisticsOrderHotAcceptDetail,
|
|
|
- statisticsOrderHotAcceptDetailExport,
|
|
|
- departmentHotSmallDetailExport,
|
|
|
- departmentHotSmallDetail,
|
|
|
+ statisticsOrderHotDetailExport,
|
|
|
+ statisticsOrderHotDetail,
|
|
|
+ statisticsOrderHotSatisfyDetail,
|
|
|
+ statisticsOrderHotSatisfyDetailExport,
|
|
|
+ statisticsOrderHotAcceptDetail,
|
|
|
+ statisticsOrderHotAcceptDetailExport,
|
|
|
+ departmentHotSmallDetailExport,
|
|
|
+ departmentHotSmallDetail,
|
|
|
+ departmentHotDetailNew, departmentHotDetailNewExport,
|
|
|
} from '@/api/statistics/order';
|
|
|
import { useRoute } from 'vue-router';
|
|
|
import {
|
|
@@ -295,15 +296,16 @@ const queryList = () => {
|
|
|
});
|
|
|
break;
|
|
|
case 'orgHotspot': // 热点类型部门统计
|
|
|
- exportMethod.value = departmentHotSmallDetailExport; // 导出接口
|
|
|
+ exportMethod.value = departmentHotDetailNewExport; // 导出接口
|
|
|
requestParams.value = {
|
|
|
PageIndex: state.queryParams.PageIndex,
|
|
|
PageSize: state.queryParams.PageSize,
|
|
|
HotspotCode: routeQueryParams.HotspotCode,
|
|
|
+ OrgCode: routeQueryParams.OrgCode,
|
|
|
StartTime: state.queryParams.crTime[0],
|
|
|
EndTime: state.queryParams.crTime[1],
|
|
|
};
|
|
|
- departmentHotSmallDetail(requestParams.value)
|
|
|
+ departmentHotDetailNew(requestParams.value)
|
|
|
.then((res: any) => {
|
|
|
state.tableData = res.result?.items ?? [];
|
|
|
state.total = res.result?.total ?? 0;
|