yangfeng
2023-12-08 de30afc054a9f72b49d2b81d4c7d6891a5e97e12
1
2
3
4
5
6
7
8
9
import request from "@/utils/request";
 
// 获取网络配置
export const getDashboard = () => {
  return request({
    url: "/v1/dashboard/dashboard",
    method: "get",
  });
};