shuishen
2023-04-09 85fb13abbeadc1765d2c0056ba99c6c19aa35dfd
src/api/dept/index.js
@@ -2,7 +2,7 @@
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2022-11-30 15:18:29
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2022-12-05 15:23:32
 * @LastEditTime: 2023-04-05 02:37:40
 * @FilePath: \srs-police-affairs\src\api\dept\index.js
 * @Description:
 *
@@ -64,8 +64,10 @@
 */
export const getAoiByPt = (lng, lat, height, adcode, tolerance) => {
    return request({
        url: '/sf3d/area/getAoiByPt',
        // url: '/sf3d/area/getAoiByPt',
        url: '/sf3d/area/stdgetAoiByPt',
        method: 'get',
        authorization: false,
        requestBaseUrl: 'fengt',
        params: {
            lng,
@@ -101,8 +103,10 @@
 */
export const getHouses = (build_id, adcode) => {
    return request({
        url: '/sf3d/build/houses',
        // url: '/sf3d/build/houses',
        url: '/sf3d/build/stdhouses',
        method: 'get',
        authorization: false,
        requestBaseUrl: 'fengt',
        params: {
            build_id,
@@ -111,12 +115,14 @@
    })
}
/**
 * 大搜
 * @param {*} adcode
 * @returns
 */
export const getSearchExtensively = (ak, region, query) => {
export const getSearchExtensively = (ak, region, query, ids) => {
    return request({
        url: '/zhs/bs/search',
        method: 'get',
@@ -124,7 +130,8 @@
        params: {
            ak,
            region,
            query
            query,
            ids
        }
    })
}
@@ -160,19 +167,30 @@
    })
}
// 小区树形数据
export const getPoliceStationTrees = (params) => {
    return request({
        url: `/api/policeStationInfo/policeStationInfo/getPoliceStationTrees`,
        method: 'get',
        params: {
            ...params
        }
    })
}
// 转id
// export const getAoiByBgId = (bg_id) => {
//     return request({
//         url: `/sf3d/area/getAoiByBgId`,
//         method: 'get',
//         requestBaseUrl: 'fengt',
//         params: {
//             bg_id,
//             adcode: 361102,
//             type: 0
//         }
//     })
// }
export const getAoiByBgId = (bg_id) => {
    return request({
        url: `/sf3d/area/getAoiByBgId`,
        method: 'get',
        requestBaseUrl: 'fengt',
        params: {
            bg_id,
            adcode: 361102,
            type: 0
        }
    })
}
// 责任民警所属辖区
export const getVillageInfo = (aoiId) => {
@@ -182,6 +200,15 @@
        params: {
            aoiId
        }
    })
}
// 派出所默认展示小区
export const getPoliceSationVillageInfo = (param) => {
    return request({
        url: `/api/villageInfo/villageInfo/details`,
        method: 'get',
        params: param
    })
}
@@ -220,29 +247,80 @@
    })
}
// 获取对应id下的派出所的责任区人口
export const getVillagePersonStatisticInfoByPoliceStationId = (name, id) => {
/**
 * @description: 获取首页重点人员的数据
 * @param {*} params
 * @return {*}
 */
export const getPersonInfo = (params) => {
    return request({
        url: `/api/villagePersonInfo/villagePersonInfo/getVillagePersonStatisticInfoByPoliceStationId`,
        url: '/api/villagePersonInfo/villagePersonInfo/keyPersonnelCount',
        method: 'get',
        params: {
            name,
            id
            ...params,
        }
    })
}
// 获取该责任区下的人员列表信息
export const getAreaPage = (current, size, areaId,policeName,phone) => {
/**
 * @description: 获取首页重点人员列表信息
 * @param {*} params
 * @return {*}
 */
export const getPersonInfoPage = (params) => {
    return request({
        url: '/api/villagePersonInfo/villagePersonInfo/page',
        method: 'get',
        params: {
            ...params,
        }
    })
}
// 获取对应id下的派出所的责任区人口
export const getVillagePersonStatisticInfoByPoliceStationId = (id, name) => {
    return request({
        url: `/api/villagePersonInfo/villagePersonInfo/getVillagePersonStatisticInfoByPoliceStationId`,
        method: 'get',
        params: {
            id,
            name
        }
    })
}
// 获取现有房屋
export const getHouseStatisticInfo = (deptId, isFollow) => {
    return request({
        url: `/api/houseStatistic/houseStatistic/getHouseStatisticInfo`,
        method: 'get',
        params: {
            deptId,
            isFollow
        }
    })
}
/**
 * @description: 原来获取户籍人口下责任区-人口信息,已作废
 * @param {*} current
 * @param {*} areaId
 * @param {*} policeName
 * @param {*} phone
 * @param {*} size
 * @return {*}
 */
export const getAreaPage = (current, areaId, policeName, phone, size) => {
    return request({
        url: `/api/policeStationInfo/policeStationInfo/getAreaPage`,
        method: 'get',
        params: {
            current,
            size,
            areaId,
            policeName,
            phone
            phone,
            size
        }
    })
}
}