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