/* * @Author: wei.li * @Date: 2021-12-23 17:33:19 * @LastEditors: levi7754 levi7754@163.com * @LastEditTime: 2022-09-05 10:53:35 * @Description: file content */ import { http } from '@utogether/utils'; // import { http } from '../utils/http'; // 地图数据 export const mapJson = (data?: object) => { return http.request('get', '/getMapInfo', data); }; // echarts数据 export const echartsJson = (data?: object) => { return http.request('get', '/getEchartsInfo', data); };