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.
25 lines
518 B
25 lines
518 B
import request from "@/router/axios"; |
|
|
|
export const getCarborList = (query) => { |
|
return request({ |
|
url: "/api/blade-lims/carbonEmissionPlan/page", |
|
method: "get", |
|
params: query, |
|
}); |
|
}; |
|
|
|
export const saveCarbon = (data) => { |
|
return request({ |
|
url: "/api/blade-lims/carbonEmissionPlan/saveCarbon", |
|
method: "post", |
|
data, |
|
}); |
|
}; |
|
|
|
export const deleteCarbon = (id) => { |
|
return request({ |
|
url: "/api/blade-lims/carbonEmissionPlan/deleteById", |
|
method: "get", |
|
params: { id }, |
|
}); |
|
};
|
|
|