|
|
@@ -166,12 +166,12 @@ import Box from '@/components/box.vue'
|
|
|
import Echart from '@/components/chart.vue'
|
|
|
import SelectDate from '@/components/selectDate.vue'
|
|
|
|
|
|
-import { ref, watch } from 'vue'
|
|
|
+import { Ref, ref, watch } from 'vue'
|
|
|
import { graphic } from 'echarts'
|
|
|
import LineAnalysisService from '../services/lineAnalysis.service'
|
|
|
import { format, subDays } from 'date-fns'
|
|
|
|
|
|
-const leftContent = ref({
|
|
|
+const leftContent:Ref<any> = ref({
|
|
|
tCharts: [
|
|
|
{
|
|
|
name: '线路类型',
|
|
|
@@ -355,7 +355,7 @@ const leftContent = ref({
|
|
|
}
|
|
|
]
|
|
|
})
|
|
|
-const rightContent = ref({
|
|
|
+const rightContent:Ref<any> = ref({
|
|
|
tCharts: [
|
|
|
{
|
|
|
name: '线路长度分布',
|