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.
25 lines
506 B
25 lines
506 B
import request from '@/utils/request'
|
|
|
|
// 查询应急预案管理列表
|
|
export function listPlan(query) {
|
|
return request({
|
|
url: '/information/plan/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询应急预案管理详细
|
|
export function getPlan(id) {
|
|
return request({
|
|
url: '/information/plan/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
//手机端,应急预案数量统计(按类型)
|
|
export function planTjNumByType() {
|
|
return request({
|
|
url: '/information/plan/planTjNumByType',
|
|
method: 'get',
|
|
})
|
|
} |