Compare commits
3 Commits
bfc018f5f0
...
771631bb82
| Author | SHA1 | Date |
|---|---|---|
|
|
771631bb82 | |
|
|
366149a736 | |
|
|
5099ac5a2f |
|
|
@ -88,6 +88,7 @@ enum Api {
|
|||
UpdateCaseInfo = '/api/DroneCaseInfoSingle/UpdateCaseInfo',
|
||||
// 修改案件-获取案件历史信息
|
||||
LoadCaseHistoryInfoList = '/api/DroneCaseInfoSingle/LoadCaseHistoryInfoList',
|
||||
|
||||
}
|
||||
|
||||
export const getPositionsTree = (params?: AccountParams) =>
|
||||
|
|
@ -388,3 +389,7 @@ export function LoadCaseHistoryInfoList(params:{key: string}) {
|
|||
params,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,14 @@ enum Api {
|
|||
// 获取图斑中心点
|
||||
GetPolygonCenter = '/api/DroneCaseInfoSingle/GetCenterPoints',
|
||||
// 获取用户访问机构权限
|
||||
GetUserOrgs = '/api/Check/GetOrgs'
|
||||
GetUserOrgs = '/api/Check/GetOrgs',
|
||||
// 大屏下发案件统计
|
||||
IssuedStatitical = "/api/DroneScreenDisplay/CaseOffenceXiaFa",
|
||||
// 大屏核实新增统计
|
||||
VerifyStatitical = "/api/DroneScreenDisplay/CaseOffenceCheckAdd",
|
||||
// 大屏整改剩余统计
|
||||
RectificationStatitical = "/api/DroneScreenDisplay/CaseOffenceModifyRemain",
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -125,4 +132,26 @@ export function getPolygonCenter(params){
|
|||
|
||||
export function getUserOrgs(params){
|
||||
return defHttp.get({ url: Api.GetUserOrgs, params });
|
||||
}
|
||||
|
||||
|
||||
export function getIssuedStatitical(params) {
|
||||
return defHttp.get({
|
||||
url: Api.IssuedStatitical,
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function getVerifyStatitical(params) {
|
||||
return defHttp.get({
|
||||
url: Api.VerifyStatitical,
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function getRectificationStatitical(params) {
|
||||
return defHttp.get({
|
||||
url: Api.RectificationStatitical,
|
||||
params,
|
||||
});
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -83,7 +83,7 @@
|
|||
})
|
||||
list.value = levesl;
|
||||
}
|
||||
clickCounty(list.value[0])
|
||||
// clickCounty(list.value[0])
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@
|
|||
});
|
||||
|
||||
onMounted(() => {
|
||||
getWeather();
|
||||
// getWeather();
|
||||
getMenu();
|
||||
getFireUserLoginName();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue