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.

17 lines
372 B

2 months ago
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'
})
}