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.

27 lines
479 B
JavaScript

import axios from "../../utils/axios";
export function registerList(query) {
return axios({
url: "/sale/device/registerList",
method: "get",
params: query
});
}
export function check(data) {
return axios({
url: "/sale/device/check",
method: "post",
data: data
});
}
export function deleterKey(data) {
return axios({
url: "/sale/info/deleterKey",
method: "post",
data: data
});
}