card.js 713 B

12345678910111213141516171819202122232425262728293031323334
  1. import request from '@/utils/request'
  2. //身份证识别
  3. export function getOcrIdCard(data) {
  4. return request({
  5. 'url': '/ocr/ocrIdCard',
  6. 'method': 'post',
  7. 'data':data
  8. })
  9. }
  10. //车牌照识别
  11. export function getlicensePlate(data) {
  12. return request({
  13. 'url': '/ocr/licensePlate',
  14. 'method': 'post',
  15. 'data':data
  16. })
  17. }
  18. //房产证识别wuYe:ocr:realEstateCertificate
  19. export function getrealEstateCertificatee(data) {
  20. return request({
  21. 'url': '/ocr/realEstateCertificate',
  22. 'method': 'post',
  23. 'data':data
  24. })
  25. }
  26. //行驶证识别wuYe:ocr:vehicleLicense
  27. export function getvehicleLicense(data) {
  28. return request({
  29. 'url': '/ocr/vehicleLicense',
  30. 'method': 'post',
  31. 'data':data
  32. })
  33. }