You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import request from '@/utils/request'
|
|
|
|
const service_name = "oil-user"
|
|
|
|
const group_name = "oilCustomerInfo"
|
|
|
|
export default{
|
|
|
|
carNoIdentify(data) { //图片上传-ORC识别
|
|
|
|
return request({
|
|
|
|
url: `/${service_name}/${group_name}/carNoIdentify`,
|
|
|
|
method: 'post',
|
|
|
|
data: data
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 查询企业配置
|
|
|
|
getCompanyConfigByCompanyId(id) {
|
|
|
|
return request({
|
|
|
|
url: `/${service_name}/sysCompanyConfig/getCompanyConfigByCompanyId/${id}`,
|
|
|
|
method: 'GET'
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|