Commit 56c8d8fa authored by Mr.Tang's avatar Mr.Tang

车型页面修改

parent 67c00a60
......@@ -9,6 +9,15 @@ export function listModel(query) {
})
}
// 查询国际车型列表
export function listInternationalModel(query) {
return request({
url: '/control/model/list/International',
method: 'get',
params: query,
})
}
// 查询国内车型详细
export function getModel(id) {
return request({
......@@ -16,6 +25,13 @@ export function getModel(id) {
method: 'get',
})
}
// 查询国内车型详细
export function getInternationalModel(id) {
return request({
url: '/control/model/International/' + id,
method: 'get',
})
}
// 新增国内车型
export function addModel(data) {
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment