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.
33 lines
715 B
33 lines
715 B
2 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// 查询应急人员列表
|
||
|
export function listEmergencycrew(query) {
|
||
|
return request({
|
||
|
url: '/information/emergencycrew/list',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
})
|
||
|
}
|
||
|
// 查询应急队伍列表
|
||
|
export function listEmergencyteam(query) {
|
||
|
return request({
|
||
|
url: '/information/emergencyteam/list',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
})
|
||
|
}
|
||
|
// 查询应急队伍树结构
|
||
|
export function emergencyteamTree(query) {
|
||
|
return request({
|
||
|
url: '/information/emergencycrew/crewTree',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
})
|
||
|
}
|
||
|
// 查询应急人员详情信息
|
||
|
export function getEmergencycrew(id) {
|
||
|
return request({
|
||
|
url: '/information/emergencycrew/' + id,
|
||
|
method: 'get'
|
||
|
})
|
||
|
}
|