28 lines
511 B
JavaScript
28 lines
511 B
JavaScript
import request from "@/service";
|
|
|
|
const getSupplemenDetail = (data) => {
|
|
return request({
|
|
url: "/copyright/supplement-detail",
|
|
method: "POST",
|
|
data,
|
|
});
|
|
};
|
|
|
|
const getCopyrightInfo = (data) => {
|
|
return request({
|
|
url: "/copyright/copyright-info",
|
|
method: "POST",
|
|
data,
|
|
});
|
|
};
|
|
|
|
const updateSupplement = (data) => {
|
|
return request({
|
|
url: "/copyright/update-supplement",
|
|
method: "POST",
|
|
data,
|
|
});
|
|
};
|
|
|
|
export { getSupplemenDetail, updateSupplement, getCopyrightInfo };
|