You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
JavaScript
58 lines
1.1 KiB
JavaScript
import axios from "../../utils/axios";
|
|
|
|
export function filterCompanySalesmanUpdateLog(query) {
|
|
return axios(
|
|
{
|
|
url: "/sale/info/company/salesman/update/log/filter",
|
|
method: "get",
|
|
params: query
|
|
}
|
|
)
|
|
}
|
|
|
|
export function getCompanySalesmanUpdateLog(query) {
|
|
return axios(
|
|
{
|
|
url: "/sale/info/companySalesmanUpdateLog",
|
|
method: "get",
|
|
params: query
|
|
}
|
|
);
|
|
}
|
|
|
|
export function insertCompanySalesmanUpdateLog(query) {
|
|
return axios(
|
|
{
|
|
url: "/sale/info/insertCompanySalesmanUpdateLog",
|
|
method: "post",
|
|
data: query
|
|
}
|
|
);
|
|
}
|
|
|
|
export function updateCompanySalesmanUpdateLog(query) {
|
|
return axios(
|
|
{
|
|
url: "/sale/info/updateCompanySalesmanUpdateLog",
|
|
method: "post",
|
|
data: query
|
|
}
|
|
);
|
|
}
|
|
|
|
export function deleteCompanySalesmanUpdateLog(query) {
|
|
return axios(
|
|
{
|
|
url: "/sale/info/deleteCompanySalesmanUpdateLog",
|
|
method: "post",
|
|
data: query
|
|
}
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|