yangfeng
2023-12-08 9484ab1d4a7cbae2b16a004b33be76f94277b772
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",
  });
};