You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
211 B
13 lines
211 B
5 months ago
|
import request from "@/utils/request";
|
||
|
|
||
|
// 查看pdf
|
||
|
|
||
|
// 1.获取所有船只及批次
|
||
|
export function getProject(params) {
|
||
|
return request({
|
||
|
url: "/kban/getProject",
|
||
|
method: "get",
|
||
|
params,
|
||
|
});
|
||
|
}
|