ludc
2024-08-02 c92be9df89d2c72d8d9fc4d0c7c54f53e1897521
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '@/router/axios';
 
// 列表查询
export function gridLink() {
  return request({
    url: "/api/linkTypeController/gridLink",
    method: "get",
  });
}
 
// 通过属性池返回的 attributes 获取完整的信息
export function getByAttributeNames(params) {
  return request({
    url: "/api/attributeController/getByAttributeNames",
    method: "get",
    params
  });
}