|
|
@ -67,6 +67,12 @@ import * as echarts from "echarts"; |
|
|
|
import { getV2PatrolStatisticChart } from "@/api/dike"; |
|
|
|
import { initCommonBarLineOptions, initCommonPieRingOptions, initCommonAngleAxisOptions } from "@/utils/echartsUtils"; |
|
|
|
|
|
|
|
const props = defineProps({ |
|
|
|
resCode: { |
|
|
|
type: String, |
|
|
|
default: "", |
|
|
|
}, |
|
|
|
}); |
|
|
|
const projectSum: any = ref(); |
|
|
|
const xcRecordsSum: any = ref(); |
|
|
|
const flawSum: any = ref(); |
|
|
@ -93,6 +99,7 @@ function requestFunc(data: any) { |
|
|
|
startTime: paramsData.value.timeRange[0] ? paramsData.value.timeRange[0] + " 00:00:00" : null, |
|
|
|
endTime: paramsData.value.timeRange[1] ? paramsData.value.timeRange[1] + " 23:59:59" : null, |
|
|
|
adcd: paramsData.value.adcd, |
|
|
|
code: props.resCode, |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|