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.
14 lines
339 B
14 lines
339 B
import request from '@/utils/request'
|
|
|
|
// 车型配置详细信息
|
|
export function selectExiCarConfig(data) {
|
|
return request({
|
|
url: '/base/v1/basevehicle/selectExiCarConfig',
|
|
method: 'post',
|
|
params: {
|
|
modelSid:data.modelSid,
|
|
configSid:data.configSid,
|
|
vehModelConfigSid:data.vehModelConfigSid,
|
|
},
|
|
})
|
|
}
|
|
|