import request from '@/utils/request' //----------------------------------- 员工概况 ------------------------------- // 获取员工类型 export function getEmployeePieData(appOrg) { return request({ url: '/large/employee/getEmployeePieData?appOrg='+ appOrg, method: 'get' }) } // 获取入楼情况 export function getEnterBuildData(appOrg) { return request({ url: '/large/employee/getEnterBuildData?appOrg='+ appOrg, method: 'get' }) } // 近一周人流量 export function getPastWeekFlowData(appOrg) { return request({ url: '/large/employee/getPastWeekFlowData?appOrg='+ appOrg, method: 'get' }) } // 获取员工性别情况 export function getSexChartData(appOrg) { return request({ url: '/large/employee/getSexChartData?appOrg='+ appOrg, method: 'get' }) } // 其他数据信息 export function getEmployeeOtherData(appOrg) { return request({ url: '/large/employee/getOtherData?appOrg='+ appOrg, method: 'get' }) } //----------------------------------- 员工健康 ------------------------------- // 健康服务 export function getHealthData(appOrg) { return request({ url: '/large/health/getHealthData?appOrg='+ appOrg, method: 'get' }) } // 近12月大病发现数量 export function getHealthIllnessBrokenData(appOrg) { return request({ url: '/large/health/getHealthIllnessBrokenData?appOrg='+ appOrg, method: 'get' }) } // 多发疾病排行 export function getIllnessChartData(appOrg) { return request({ url: '/large/health/getIllnessChartData?appOrg='+ appOrg, method: 'get' }) } // 体检情况 柱形图 export function getPhysicalChartData(appOrg) { return request({ url: '/large/health/getPhysicalChartData?appOrg='+ appOrg, method: 'get' }) } // 体检情况 饼图 export function getPhysicalPieData(appOrg) { return request({ url: '/large/health/getPhysicalPieData?appOrg='+ appOrg, method: 'get' }) } //----------------------------------- 绿智食堂 ------------------------------- //食堂概览 export function getCanteenData(appOrg) { return request({ url: '/large/smart/getCanteenData?appOrg='+ appOrg, method: 'get' }) } //食堂服务满意度 export function getCanteenScoreData(appOrg, canteen) { return request({ url: '/large/smart/getCanteenScoreData?appOrg='+ appOrg + '&canteenName=' + canteen, method: 'get' }) } //各食堂满意度排名 export function getCanteenDegreeData(appOrg) { return request({ url: '/large/smart/getCanteenDegreeData?appOrg='+ appOrg, method: 'get' }) } //资质证件 export function getQualificationData(appOrg, canteen) { return request({ url: '/large/smart/getQualificationData?appOrg='+ appOrg + '&canteenName=' + canteen, method: 'get' }) } //菜品信息 export function getFoodData(appOrg) { return request({ url: '/large/smart/getFoodData?appOrg='+ appOrg, method: 'get' }) } //其他数据信息 export function getOtherData(appOrg) { return request({ url: '/large/smart/getOtherData?appOrg='+ appOrg, method: 'get' }) } //食堂安全管理 export function getSafetyData(appOrg) { return request({ url: '/large/smart/getSafetyData?appOrg='+ appOrg, method: 'get' }) } //绿智食堂参评情况 export function geParticipateData(appOrg) { return request({ url: '/large/smart/geParticipateData?appOrg='+ appOrg, method: 'get' }) } //就餐情况 export function getDiningPieData(appOrg) { return request({ url: '/large/smart/getDiningPieData?appOrg='+ appOrg, method: 'get' }) } //智慧食堂 export function getSmartCanteenPieData(appOrg) { return request({ url: '/large/smart/getSmartCanteenPieData?appOrg='+ appOrg, method: 'get' }) } //员工服务 export function getSmartEmployeePieData(appOrg) { return request({ url: '/large/smart/getEmployeePieData?appOrg='+ appOrg, method: 'get' }) } //电子餐券 export function getElectronicVouchersData(appOrg) { return request({ url: '/large/smart/getElectronicVouchersData?appOrg='+ appOrg, method: 'get' }) } //食堂列表 export function getCanteenNameList(appOrg) { return request({ url: '/large/smart/getCanteenNameList?appOrg='+ appOrg, method: 'get' }) } //菜谱列表 export function getFoodsList(appOrg) { return request({ url: '/large/smart/getFoodsList?appOrg='+ appOrg, method: 'get' }) } //----------------------------------- 共享驿站 ------------------------------- // 建设完成达标率 export function getOverviewData(appOrg) { return request({ url: '/large/property/getOverviewData?appOrg='+ appOrg, method: 'get' }) } // 单位列表 export function getSelfTestAndConsultation(appOrg) { return request({ url: '/large/property/getSelfTestAndConsultation?appOrg='+ appOrg, method: 'get' }) } //服务内容 export function getPropertyList(appOrg) { return request({ url: '/large/property/getPropertyList?appOrg='+ appOrg, method: 'get' }) } //----------------------------------- 基础运行数据 ------------------------------- // 数据概况 export function getBasicOverviewData(appOrg) { return request({ url: '/large/basics/getOverviewData?appOrg='+ appOrg, method: 'get' }) } // 服务器 export function getServerListData(appOrg) { return request({ url: '/large/basics/getServerListData?appOrg='+ appOrg, method: 'get' }) } // 系统运行峰值情况分析 export function getSystemRunData(appOrg) { return request({ url: '/large/basics/getSystemRunData?appOrg='+ appOrg, method: 'get' }) } // 系统运行报警信息 export function getSystemRunErrData(appOrg) { return request({ url: '/large/basics/getSystemRunErrData?appOrg='+ appOrg, method: 'get' }) } // 获取活跃top10公司 export function getTopTenCompany(appOrg) { return request({ url: '/large/basics/getTopTenCompany?appOrg='+ appOrg, method: 'get' }) } //----------------------------------- 物业服务 ------------------------------- // 数据概况 export function getPostOverviewData(appOrg) { return request({ url: '/large/post/getOverviewData?appOrg='+ appOrg, method: 'get' }) } // 近一个月报修分类占比 export function getPastMonthPieData(appOrg) { return request({ url: '/large/post/getPastMonthPieData?appOrg='+ appOrg, method: 'get' }) } // 近六个月报修订单分类 export function getPastSixMonthChartsData(appOrg) { return request({ url: '/large/post/getPastSixMonthChartsData?appOrg='+ appOrg, method: 'get' }) } //一周车流量统计 export function getCarFlowData(appOrg) { return request({ url: '/large/post/getCarFlowData?appOrg='+ appOrg, method: 'get' }) } /*-------------------能源占比-------------------*/ //碳排放量月度变化趋势图 export function carbonEmissionStatistics() { return request({ url: '/large/build/carbonEmissionStatistics', method: 'get' }) } //数据中心机房信息 export function dataCenterRoom(appOrg) { return request({ url: '/large/build/dataCenterRoom?appOrg='+ appOrg, method: 'get' }) } //年度累计电耗 export function electricityStatistics() { return request({ url: '/large/build/electricityStatistics', method: 'get' }) } export function powerForYear() { return request({ url: '/large/build/powerForYear', method: 'get' }) } //年度累计综合能耗 export function energyForYear() { return request({ url: '/large/build/energyForYear', method: 'get' }) } export function energyStatistics() { return request({ url: '/large/build/energyStatistics', method: 'get' }) } //燃气用量信息 export function gasInfo(appOrg) { return request({ url: '/large/build/gasInfo?appOrg='+ appOrg, method: 'get' }) } //可再生电力信息 export function greenPowerInfo(appOrg) { return request({ url: '/large/build/greenPowerInfo?appOrg='+ appOrg, method: 'get' }) } //供暖能耗信息 export function heatingEnergy(appOrg) { return request({ url: '/large/build/heatingEnergy?appOrg='+ appOrg, method: 'get' }) } //年度累计非供暖能耗 export function nonHeatingEnergyForYear() { return request({ url: '/large/build/nonHeatingEnergyForYear', method: 'get' }) } export function usePowerStatistics() { return request({ url: '/large/build/usePowerStatistics', method: 'get' }) } //办公碳排放情况 export function officeCarbonForYear() { return request({ url: '/large/build/officeCarbonForYear', method: 'get' }) } //月用电量信息 export function powerForMonth() { return request({ url: '/large/build/powerForMonth', method: 'get' }) } //资源信息 export function resourceInfo(appOrg) { return request({ url: '/large/build/resourceInfo?appOrg='+ appOrg, method: 'get' }) } //楼宇月用水电热信息 export function useHeatGas(appOrg) { return request({ url: '/large/build/useHeatGas?appOrg='+ appOrg, method: 'get' }) } //年度累计水耗 export function waterForYear() { return request({ url: '/large/build/waterForYear', method: 'get' }) } export function waterStatistics() { return request({ url: '/large/build/waterStatistics', method: 'get' }) } /*------------------办公能耗-------------------*/ export function airOverview() { return request({ url: '/large/first/air', method: 'get' }) } /*视频*/ //统一视频(工程现场监控) export function videoList(code) { return request({ url: '/large/video/videoList?code=' + code, method: 'get' }) } //视频流列表 各公司出入口监控 export function monitorList(code) { return request({ url: '/large/video/monitorList?code=' + code, method: 'get' }) } //获取视频推流地址 export function openCamera(code) { return request({ url: '/large/video/openCamera?videoCode=' + code, method: 'get' }) }