import $http from '@/utils/request' // 获取门禁信息 export const getAccessInfo = data => $http({ method: 'POST', url: '/AccessControl/Config/GetEntity', data, notShowLoading: true, }) // 获取门禁列表信息 export const getAccessInfoList = data => $http({ method: 'POST', url: '/AccessControl/Config/GetList', data, notShowLoading: true, }) // 获取门禁列表信息 export const getAccessLogList = data => $http({ method: 'POST', url: '/AccessControl/Log/GetList', data, notShowLoading: true, })