农经大屏
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

run.js 653 B

1 vecka sedan
1234567891011121314151617181920212223242526272829
  1. import request from '@/utils/request'
  2. //项目总览上表
  3. export function projectPhaseDistribution(query) {
  4. return request({
  5. url: '/bigData/projectPhaseDistribution',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. //项目总览下表
  11. export function projectBuildInfoStack(query) {
  12. return request({
  13. url: '/bigData/projectBuildInfoStack',
  14. method: 'get',
  15. params: query
  16. })
  17. }
  18. //项目总览2下
  19. export function projectStatusCategoryStat(query) {
  20. return request({
  21. url: '/bigData/projectStatusCategoryStat',
  22. method: 'get',
  23. params: query
  24. })
  25. }