|
|
|
@ -807,13 +807,13 @@ const option3 =ref( { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取追责问责情况 |
|
|
|
//获取追责问责情况 |
|
|
|
const getResultCountDataFun = async (timeValue = time.value)=>{ |
|
|
|
const getResultCountDataFun = async ()=>{ |
|
|
|
const res = await getResultCount(timeValue); |
|
|
|
const body = { |
|
|
|
let resultCountArray = [] |
|
|
|
beginTime: time.value[0], |
|
|
|
Object.keys(res).forEach(s=>{ |
|
|
|
endTime: time.value[1], |
|
|
|
resultCountArray.push({name:s,value:res[s]}) |
|
|
|
} |
|
|
|
}) |
|
|
|
const res = await getResultCount(body); |
|
|
|
option3.value.series[0].data=resultCountArray; |
|
|
|
option3.value.series[0].data=res.resultCountArray; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// region 所有函数 |
|
|
|
// region 所有函数 |
|
|
|
|