|
|
|
|
@ -457,21 +457,37 @@ const getMapJSON = async (departId) => {
|
|
|
|
|
subOneVideoMapChart.value.chart.setOption(option.value); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const getSubOneVideoSuperviseProblemRankData = async (departId, timeValue) => { |
|
|
|
|
const res = await getSubOneVideoSuperviseProblemRank(departId, timeValue); |
|
|
|
|
const getSubOneVideoSuperviseProblemRankData = async () => { |
|
|
|
|
|
|
|
|
|
const body = { |
|
|
|
|
beginTime: time.value[0], |
|
|
|
|
endTime: time.value[1], |
|
|
|
|
departId: currentDepartId |
|
|
|
|
} |
|
|
|
|
const res = await getSubOneVideoSuperviseProblemRank(body); |
|
|
|
|
fxsjRankList.value = res.policeVideoSuperviseProblemRankList; |
|
|
|
|
jsdwRankList.value = res.teamVideoSuperviseProblemRankList; |
|
|
|
|
}; |
|
|
|
|
const getSubOneAllVideoSuperviseCountData = async (departId, timeValue) => { |
|
|
|
|
const res = await getSubOneAllVideoSuperviseCount(departId, timeValue); |
|
|
|
|
const getSubOneAllVideoSuperviseCountData = async () => { |
|
|
|
|
const body = { |
|
|
|
|
beginTime: time.value[0], |
|
|
|
|
endTime: time.value[1], |
|
|
|
|
departId: currentDepartId |
|
|
|
|
} |
|
|
|
|
const res = await getSubOneAllVideoSuperviseCount(body); |
|
|
|
|
overview.value = res.overview; |
|
|
|
|
}; |
|
|
|
|
//跳转客户端 |
|
|
|
|
const titleClickFun =()=>{ |
|
|
|
|
window.open("http://65.47.26.34") |
|
|
|
|
} |
|
|
|
|
const getSubOneVideoSuperviseMapData = async (departId, timeValue) => { |
|
|
|
|
const res = await getSubOneVideoSuperviseMap(departId, timeValue); |
|
|
|
|
const getSubOneVideoSuperviseMapData = async () => { |
|
|
|
|
const body = { |
|
|
|
|
beginTime: time.value[0], |
|
|
|
|
endTime: time.value[1], |
|
|
|
|
departId: currentDepartId |
|
|
|
|
} |
|
|
|
|
const res = await getSubOneVideoSuperviseMap(body); |
|
|
|
|
const mappedData = res.videoSuperviseMapIconVoList.map((item) => { |
|
|
|
|
return { |
|
|
|
|
...item, |
|
|
|
|
@ -524,9 +540,9 @@ const getSubOneVideoSuperviseProblemTypeRateData = async (
|
|
|
|
|
|
|
|
|
|
const getData = async () => { |
|
|
|
|
getMapJSON(currentDepartId); |
|
|
|
|
getSubOneVideoSuperviseProblemRankData(currentDepartId, time.value); |
|
|
|
|
getSubOneAllVideoSuperviseCountData(currentDepartId, time.value); |
|
|
|
|
getSubOneVideoSuperviseMapData(currentDepartId, time.value); |
|
|
|
|
getSubOneVideoSuperviseProblemRankData(); |
|
|
|
|
getSubOneAllVideoSuperviseCountData(); |
|
|
|
|
getSubOneVideoSuperviseMapData(); |
|
|
|
|
getSubOneVideoSuperviseTrendData(currentDepartId, selectedYear.value); |
|
|
|
|
getSubOneVideoSuperviseProblemTypeRateData(currentDepartId, time.value); |
|
|
|
|
}; |
|
|
|
|
|