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.
udi-cpt-vue/src/api/system/company.js

17 lines
291 B
JavaScript

import axios from "@/utils/request";
export function getCompany() {
return axios({
url: "/warehouse/info/company",
method: "get"
});
}
export function modifyCompany(query) {
return axios({
url: "/warehouse/info/modifyCompany",
method: "post",
data: query
});
}