111
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.

19 lines
475 B

9 months ago
import request from '@/utils/request'
9 months ago
const service_name = "oil-user"
9 months ago
const group_name = "oilCustomerInfo"
export default{
carNoIdentify(data) { //图片上传-ORC识别
return request({
url: `/${service_name}/${group_name}/carNoIdentify`,
method: 'post',
data: data
})
},
9 months ago
// 查询企业配置
getCompanyConfigByCompanyId(id) {
return request({
url: `/${service_name}/oil-user/getCompanyConfigByCompanyId?companyId=${id}`,
method: 'GET'
})
},
9 months ago
}