13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
import axios from './http'
|
|
|
|
export default class SerialCheck {
|
|
getList(params) {
|
|
return axios.get('/exec/exec/snCheck/list', { params })
|
|
}
|
|
|
|
check(params) {
|
|
params.type = true
|
|
return axios.post('/exec/exec/snCheck/checkSn', params)
|
|
}
|
|
}
|