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.
28 lines
516 B
28 lines
516 B
import request from '@/utils/request'
|
|
|
|
|
|
|
|
// 查询应急车辆管理列表
|
|
export function listVehicleInfo(query) {
|
|
return request({
|
|
url: '/material/vehicleInfo/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询应急车辆管理详细
|
|
export function getVehicleInfo(clglId) {
|
|
return request({
|
|
url: '/material/vehicleInfo/' + clglId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
|
|
export function listCountByTeamCha(teamName) {
|
|
return request({
|
|
url: '/material/vehicleInfo/listCountByTeam/' + teamName,
|
|
method: 'get'
|
|
})
|
|
} |