72 lines
2.0 KiB
Vue
72 lines
2.0 KiB
Vue
|
import request from '@/utils/request'
|
||
|
//获取中间地图
|
||
|
export function getDistrictFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getDistrictFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//左侧获取组件资源节约资金列表
|
||
|
export function getComponentFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getComponentFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//左侧获取应用资源列表
|
||
|
export function getResourceFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getResourceFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//左侧基础设施
|
||
|
export function getInfrastructureFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getInfrastructureFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//右侧市级部门共享排行
|
||
|
export function getProvideDeptFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getProvideDeptFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//右侧市级部门申请排行
|
||
|
export function getApplyDeptFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getApplyDeptFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//右侧区市提供排行
|
||
|
export function getProvideDistrictFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getProvideDistrictFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//右侧区市申请排行
|
||
|
export function getApplyDistrictFundStatement() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getApplyDistrictFundStatement',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//右侧资源汇聚总量
|
||
|
export function selectTotal() {
|
||
|
return request({
|
||
|
url: '/resource/selectTotal',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
//首页 获取总节省资金
|
||
|
//右侧资源汇聚总量
|
||
|
export function getApplyPriceCount() {
|
||
|
return request({
|
||
|
url: '/processForm/tabilityapplication/getApplyPriceCount',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|