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
473 B

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