|
|
|
|
@ -442,7 +442,12 @@ const getMapJSON = async (departId = currentDepartId) => {
|
|
|
|
|
subOneGlobalMap.value.chart.setOption(option.value); |
|
|
|
|
} |
|
|
|
|
const getOrganizationProRankData = async (departId = currentDepartId, timeValue = time.value) => { |
|
|
|
|
const res = await getSubOneOrganizationRank(departId, timeValue); |
|
|
|
|
const body={ |
|
|
|
|
departId: currentDepartId, |
|
|
|
|
beginTime: time.value[0], |
|
|
|
|
endTime: time.value[1] |
|
|
|
|
} |
|
|
|
|
const res = await getSubOneOrganizationRank(body); |
|
|
|
|
fxsjlist.value = res.fxsjlist; |
|
|
|
|
jsdwlist.value = res.jsdwlist; |
|
|
|
|
} |
|
|
|
|
@ -451,7 +456,12 @@ const getBusinessRateData = async (departId = currentDepartId, timeValue = time.
|
|
|
|
|
ywlxPieOption.value.series[0].data = res.ywzblist; |
|
|
|
|
} |
|
|
|
|
const getAllGlobalCountData = async (departId = currentDepartId, timeValue = time.value) => { |
|
|
|
|
const res = await getSubOneAllCount(departId, timeValue); |
|
|
|
|
const body={ |
|
|
|
|
departId: currentDepartId, |
|
|
|
|
beginTime: time.value[0], |
|
|
|
|
endTime: time.value[1] |
|
|
|
|
} |
|
|
|
|
const res = await getSubOneAllCount(body); |
|
|
|
|
overviewData.value = res.overview; |
|
|
|
|
} |
|
|
|
|
const getSubOneGlobalMapIcon = async (departId = currentDepartId, timeValue = time.value) => { |
|
|
|
|
|