huminmin
20 小时以前 8f9e65a587ee29b607010f83025456ee28c9b0d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 产品结构页面接口
import request from "@/utils/request";
 
// 分页查询
export function queryList(id) {
  return request({
    url: "/productStructure/listByproductModelId/" + id,
    method: "get",
  });
}
 
export function add(data) {
  return request({
    url: "/productStructure",
    method: "post",
    data: data,
  });
}