yangfeng
2023-12-05 27fa305bf0c3a4405366a966c28b4d32203106b8
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",
  });
};