12345678910111213141516171819202122232425262728293031323334 |
- import request from '@/utils/request'
- //身份证识别
- export function getOcrIdCard(data) {
- return request({
- 'url': '/ocr/ocrIdCard',
- 'method': 'post',
- 'data':data
- })
- }
- //车牌照识别
- export function getlicensePlate(data) {
- return request({
- 'url': '/ocr/licensePlate',
- 'method': 'post',
- 'data':data
- })
- }
- //房产证识别wuYe:ocr:realEstateCertificate
- export function getrealEstateCertificatee(data) {
- return request({
- 'url': '/ocr/realEstateCertificate',
- 'method': 'post',
- 'data':data
- })
- }
- //行驶证识别wuYe:ocr:vehicleLicense
- export function getvehicleLicense(data) {
- return request({
- 'url': '/ocr/vehicleLicense',
- 'method': 'post',
- 'data':data
- })
- }
|