You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
import request from "../request"; |
|
|
|
export function getRightsAndComfortRank(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getRightsAndComfortRank?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
export function getCaseTypeRate(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getCaseTypeRate?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
export function getALlComfortCount(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getALlComfortCount?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
export function getComfortMapIcon(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getComfortMapIcon?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
|
|
|
|
export function getPunishmentSituation(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getPunishmentSituation?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
export function getComfortSituation(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getComfortSituation?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
export function getPoliceHurtSituationAndHurtType(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getPoliceHurtSituationAndHurtType?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
export function getCaseAriseSituationRate(times) { |
|
return request.get({ |
|
url: `/datav/rightsComfort/getCaseAriseSituationRate?beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|