@@ -62,7 +62,7 @@ export const handleMenu = (menuData: Array<any>) => {
})
const dynamicRoutes = [
{
- path: '/home', name: 'home', component: '/scoreStatistics/index', meta: {
+ path: '/home', name: 'home', component: '/score-statistics/index', meta: {
title: 'message.router.home',
isLink: '',
isHide: false,
@@ -1,7 +1,7 @@
<script lang="ts" setup>
import * as echarts from 'echarts';
import { onBeforeUnmount, onMounted, ref } from 'vue';
-import { getChartData } from '/@/views/scoreStatistics/api';
+import { getChartData } from '/src/views/score-statistics/api';
let chartObj: any;
const chartRef = ref(null);
@@ -37,9 +37,9 @@
</template>
-import { getTableData, getTableDownloadData } from '/@/views/scoreStatistics/api';
+import { getTableData, getTableDownloadData } from '/src/views/score-statistics/api';
import { Download } from '@element-plus/icons-vue';
-import { scoreStatisticsColumns } from '/@/views/scoreStatistics/Columns';
+import { scoreStatisticsColumns } from '/src/views/score-statistics/Columns';
const gridOptions = reactive({
border: 'inner',
@@ -31,7 +31,7 @@
-import { getDownloadData, getOverviewData } from '/@/views/scoreStatistics/api';
+import { getDownloadData, getOverviewData } from '/src/views/score-statistics/api';
import dayjs from 'dayjs';
import { downloadFile } from '/@/utils/service';
@@ -5,9 +5,9 @@
* @Author: xinyan
*/
-import LineChart from '/@/views/scoreStatistics/components/lineChart.vue';
-import MonthlyRating from '/@/views/scoreStatistics/components/monthlyRating.vue';
-import OverView from '/@/views/scoreStatistics/components/overView.vue';
+import LineChart from '/src/views/score-statistics/components/lineChart.vue';
+import MonthlyRating from '/src/views/score-statistics/components/monthlyRating.vue';
+import OverView from '/src/views/score-statistics/components/overView.vue';
</script>
<template>