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