welcome.js 653B

123456789101112131415161718192021222324252627282930313233
  1. import request from '@/utils/request';
  2. /*
  3. 卡片数据展示*/
  4. export const getSummary2 = () => request('/summary2');
  5. /*
  6. 柱状图数据展示 亩
  7. */
  8. export const getAreaTotalOrg = () => request('/area-total-org');
  9. /*
  10. 柱状图数据展示 设备
  11. */
  12. export const getDeviceTotalOrg = () => request('/device-total-org');
  13. /*
  14. 柱状图 人员作业统计
  15. */
  16. export const getAreaTotalPerson = () => request('/area-total-person');
  17. /*
  18. 柱状图 人员设备统计
  19. */
  20. export const getDeviceTotalPerson = () => request('/device-total-person');
  21. /*
  22. 柱状图 乡镇作业面积统计
  23. */
  24. export const getAreaTotalTown = () => request('/area-total-town');