Compare commits

...

3 Commits

Author SHA1 Message Date
徐景良 771631bb82 merge 2024-08-06 12:04:59 +08:00
徐景良 366149a736 merge 2024-08-06 12:04:13 +08:00
徐景良 5099ac5a2f merge 2024-08-06 09:25:12 +08:00
5 changed files with 681 additions and 333 deletions

View File

@ -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,
});
}

View File

@ -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,
});
}

View File

@ -83,7 +83,7 @@
})
list.value = levesl;
}
clickCounty(list.value[0])
// clickCounty(list.value[0])
}
//

View File

@ -212,7 +212,7 @@
});
onMounted(() => {
getWeather();
// getWeather();
getMenu();
getFireUserLoginName();
});