mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 01:17:23 +08:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
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);
|
|
};
|