organize.js 1.52 KB
const { http } = uni.$u
// 列表和条件筛选
export const getOrganizelist = params => http.get('/organize/list', { params })

//居民用户
export const getPoolResidentlist = params => http.get('/poolResident/list', { params })

//商业用户
export const getPoolCommercelist = params => http.get('/poolCommerce/list', { params })

//工业用户
export const getPoolIndustrylist = params => http.get('/poolIndustry/list', { params })

/*报告详情*/

//报告详情-组织实施落实 1
export const getOrganize = params => http.get('/organize/' + params )

//报告详情-天然气市场总体概况主表 2
export const getGeneralOverview = params => http.get('/generalOverview/'+ params)

//报告详情-天然气市场总体概况附表 3
export const getGeneralOverviewAttach = params => http.get('/generalOverviewAttach/'+ params)

//报告详情-告详情-重点市场业务分析 4
export const getBusinessAnalyze = params => http.get('/businessAnalyze/'+ params)


//报告详情-预计2021财年-2022财年已签约且在2023财年安装确认项目 5
export const getNewBuildingInfo = params => http.get('/newBuildingInfo/'+ params)


//报告详情-预计2023-2025财年安装确认项目 6
export const getNewBuildingItem = params => http.get('/newBuildingItem/'+ params)

//报告详情-未来发展规划,所需资源配置 7
export const getDevelopmentPlan = params => http.get('/developmentPlan/'+ params)

//报告详情-目标思路建议 8
export const getTargetSuggestion = params => http.get('/targetSuggestion/'+ params)