1
guanqb
2024-01-20 f13afcb61276061871b30bce17a7877287df0b67
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: 2023-04-05 02:37:40
 * @LastEditTime: 2023-04-18 19:27:38
 * @FilePath: \srs-police-affairs\src\api\dept\index.js
 * @Description:
 *
@@ -46,6 +46,7 @@
export const getResidentialQuartersInfo = (area_id, adcode) => {
    return request({
        url: '/sf3d/area/info',
        // url: '/data/getResidentialQuartersInfo.json',
        method: 'get',
        authorization: false,
        requestBaseUrl: 'fengt',
@@ -66,6 +67,7 @@
    return request({
        // url: '/sf3d/area/getAoiByPt',
        url: '/sf3d/area/stdgetAoiByPt',
        // url: '/data/getAoiByBgId.json',
        method: 'get',
        authorization: false,
        requestBaseUrl: 'fengt',
@@ -105,6 +107,7 @@
    return request({
        // url: '/sf3d/build/houses',
        url: '/sf3d/build/stdhouses',
        // url: '/data/huafu15d.json',
        method: 'get',
        authorization: false,
        requestBaseUrl: 'fengt',
@@ -116,15 +119,15 @@
}
/**
 * 大搜
 * 大搜查询
 * @param {*} adcode
 * @returns
 */
export const getSearchExtensively = (ak, region, query, ids) => {
    return request({
        url: '/zhs/bs/search',
        // url: '/data/jingzuo.json',
        method: 'get',
        requestBaseUrl: 'fengtDS',
        params: {
@@ -144,6 +147,35 @@
export const getSearchExtensivelyBgAoiDeepdata = (ak, region, ids, infos) => {
    return request({
        url: '/zhs/bs/search',
        // url: '/data/汇成观邸.json',
        // url: '/data/search.json',
        // url: '/data/阳光小区独栋.json',
        // url: '/data/search汇杰小区.json',
        // url: '/data/汪家园林家小区id详情搜.json',
        // url: '/data/search三江星座.json',
        method: 'get',
        requestBaseUrl: 'fengtDS',
        params: {
            ak,
            region,
            ids,
            infos,
        }
    })
}
/**
 * 大搜-户室
 * @param {*} adcode
 * @returns
 */
export const getSearchExtensivelyHousesdata = (ak, region, ids, infos) => {
    return request({
        url: '/zhs/bs/search',
        // url: '/data/汇成观邸-户室.json',
        // url: '/data/阳光小区独栋.json',
        // url: '/data/search汇杰小区1栋.json',
        // url: '/data/汪家园林家小区2号id详情搜.json',
        method: 'get',
        requestBaseUrl: 'fengtDS',
        params: {
@@ -192,7 +224,7 @@
    })
}
// 责任民警所属辖区
// 包干民警所属辖区
export const getVillageInfo = (aoiId) => {
    return request({
        url: `/api/villageInfo/villageInfo/details`,
@@ -212,13 +244,24 @@
    })
}
// 户籍人口、重点人口信息
export const getVillagePersonStatisticInfoByBuildId = (buildId) => {
// 户籍人口、重点人口信息  buildId/aoiId
export const getVillagePersonStatisticInfoByBuildId = (params) => {
    return request({
        url: `/api/villagePersonInfo/villagePersonInfo/getVillagePersonStatisticInfoByBuildId`,
        method: 'get',
        params: {
            buildId
            ...params
        }
    })
}
// 查询户室关联情况
export const getPersonConnectionConditionByBuildingId = (params) => {
    return request({
        url: `/api/villagePersonInfo/villagePersonInfo/getPersonConnectionConditionByBuildingId`,
        method: 'get',
        params: {
            ...params
        }
    })
}
@@ -231,10 +274,21 @@
        params: {
            resBusId,
            buildId,
            status,
            ...status,
            current,
            realName,
            phone
        }
    })
}
// 户籍人口、重点人口信息
export const getPicURL = (resBusId) => {
    return request({
        url: `/api/villagePersonInfo/villagePersonInfo/getPicURL`,
        method: 'get',
        params: {
            resBusId,
        }
    })
}
@@ -323,4 +377,20 @@
            size
        }
    })
}
/**
 * @description:酒店列表
 * @param {*} deptId
 * @param {*} status
 * @param {*} orderName
 * @param {*} orderRule
 * @return {*}
 */
export const getHotelList = (params) => {
    return request({
        url: `/api/hotel/hotel/page`,
        method: 'get',
        params
    })
}