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.
27 lines
764 B
27 lines
764 B
import request from "@/api/request"; |
|
|
|
|
|
|
|
|
|
export function getSubOneALlComfortCount(departId, times) { |
|
return request.get({ |
|
url: `/datav/sub1/rightsComfort/getSubOneALlComfortCount?departId=${departId}&beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
|
|
export function getSubOnePoliceHurtSituationAndHurtType(departId, times) { |
|
return request.get({ |
|
url: `/datav/sub1/rightsComfort/getSubOnePoliceHurtSituationAndHurtType?departId=${departId}&beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
|
|
|
|
export function getSubOneCaseAriseSituationRate(departId, times) { |
|
return request.get({ |
|
url: `/datav/sub1/rightsComfort/getSubOneCaseAriseSituationRate?departId=${departId}&beginTime=${times[0]}&endTime=${times[1]}` |
|
}); |
|
} |
|
|
|
|
|
|