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.
28 lines
437 B
JavaScript
28 lines
437 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function registerList(query) {
|
|
return request({
|
|
url: "/sale/device/registerList",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
|
|
|
|
export function check(data) {
|
|
return request({
|
|
url: "/sale/device/check",
|
|
method: "post",
|
|
data: data
|
|
});
|
|
}
|
|
|
|
export function deleterKey(data) {
|
|
return request({
|
|
url: "/sale/info/deleterKey",
|
|
method: "post",
|
|
data: data
|
|
});
|
|
}
|
|
|