serialNo.js 212 Bytes
Newer Older
liuxin committed
1 2 3 4 5 6 7 8 9
import Request from "~/service/Api"

export function getSerialNo() {
	return Request.post('v1/pm/id/serial-no', {})
}

export function validateSerialNo(id) {
	return Request.post('v1/pm/che-seal-serial/' + id)
}