This commit is contained in:
2024-02-05 16:16:23 +08:00
parent 607e13f266
commit 16bbe24e5b
2 changed files with 88 additions and 0 deletions

12
api/user.js Normal file
View File

@@ -0,0 +1,12 @@
import request from '@/utils/request'
const service_name = "user"
const group_name = "oilCustomerInfo"
export default{
carNoIdentify(data) { //图片上传-ORC识别
return request({
url: `/${service_name}/${group_name}/carNoIdentify`,
method: 'post',
data: data
})
},
}