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.
26 lines
552 B
26 lines
552 B
import request from '@/utils/request'
|
|
// 查询安全管理工作制度列表
|
|
export function listManageWorkSys(query) {
|
|
return request({
|
|
url: '/office/manageWorkSys/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询安全管理工作制度详细
|
|
export function getManageWorkSys(id) {
|
|
return request({
|
|
url: '/office/manageWorkSys/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 查询安全管理工作制度列表
|
|
export function listManageWork(query) {
|
|
return request({
|
|
url: '/office/manageWorkSys/file/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
} |