12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import request from '@/utils/request'
- // 资金计划统计分析
- export function getfundPlanDetail(data) {
- return request({
- url: '/projects/getListAmt',
- method: 'post',
- data
- })
- }
- // 资金使用情况分析
- export function getfundPlanUse(data) {
- return request({
- url: '/projects/getListAmtUse',
- method: 'post',
- data
- })
- }
- // 项目进度分析
- export function getProjecsProcess(data) {
- return request({
- url: '/projects/getProjecsProcess',
- method: 'post',
- data
- })
- }
- // 项目年度计划总金额穿透(四个大数字)
- export function getYearthroughList(data) {
- return request({
- url: '/projects/pageYearPlan',
- method: 'post',
- data
- })
- }
- // 年度实际投资金额穿透数据(echart柱状图)
- export function getYearMonththroughList(data) {
- return request({
- url: '/projects/pageCompAmt',
- method: 'post',
- data
- })
- }
- // 首页饼图地区穿透获取统计总数
- export function getAreaCountValue(data) {
- return request({
- url: '/projects/buildAddRt',
- method: 'post',
- data
- })
- }
|