123456789101112131415161718192021222324252627282930313233 |
- import request from '@/utils/request';
-
- /*
- 卡片数据展示*/
- export const getSummary2 = () => request('/summary2');
-
- /*
- 柱状图数据展示 亩
- */
-
- export const getAreaTotalOrg = () => request('/area-total-org');
-
- /*
- 柱状图数据展示 设备
- */
- export const getDeviceTotalOrg = () => request('/device-total-org');
-
- /*
- 柱状图 人员作业统计
- */
-
- export const getAreaTotalPerson = () => request('/area-total-person');
- /*
- 柱状图 人员设备统计
- */
-
- export const getDeviceTotalPerson = () => request('/device-total-person');
-
- /*
- 柱状图 乡镇作业面积统计
- */
-
- export const getAreaTotalTown = () => request('/area-total-town');
|