mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import { http } from "../utils/http";
|
|
|
|
// 地图数据
|
|
export const mapJson = (params?: object) => {
|
|
return http.request("get", "/getMapInfo", { params });
|
|
};
|
|
|
|
// echarts数据
|
|
export const echartsJson = (params?: object) => {
|
|
return http.request("get", "/getEchartsInfo", { params });
|
|
};
|