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.
17 lines
321 B
JavaScript
17 lines
321 B
JavaScript
4 years ago
|
import axios from "../../utils/axios";
|
||
|
|
||
|
export function getCompany() {
|
||
|
return axios({
|
||
|
url: "/warehouse/info/company",
|
||
|
method: "get"
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function modifyComapny(query) {
|
||
|
return axios({
|
||
|
url: "/warehouse/info/modifyCompany",
|
||
|
method: "post",
|
||
|
data: query
|
||
|
});
|
||
|
}
|