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
- })
- }
- export function getYearMonththroughList(data) {
- return request({
- url: '/projects/pageCompAmt',
- method: 'post',
- data
- })
- }
- export function getAreaCountValue(data) {
- return request({
- url: '/projects/buildAddRt',
- method: 'post',
- data
- })
- }
|