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.
36 lines
604 B
JavaScript
36 lines
604 B
JavaScript
import request from "@/utils/request";
|
|
|
|
|
|
export function filterCompanyCert(param) {
|
|
return request({
|
|
url: "/sup/company/cert/filterList",
|
|
method: "get",
|
|
params :param
|
|
});
|
|
}
|
|
|
|
|
|
export function isertCert(param) {
|
|
return request({
|
|
url: "/sup/company/cert/isertCert",
|
|
method: "post",
|
|
data :param
|
|
});
|
|
}
|
|
|
|
export function deleteCert(param) {
|
|
return request({
|
|
url: "/sup/company/cert/deleteCert",
|
|
method: "post",
|
|
data :param
|
|
});
|
|
}
|
|
|
|
export function updateCert(param) {
|
|
return request({
|
|
url: "/sup/info/updateCert",
|
|
method: "post",
|
|
data :param
|
|
});
|
|
}
|