| | |
| | | export function blacklistSelectByPageAndCount(params) { |
| | | return request.get('/blacklist/selectByPageAndCount', { params: params }); |
| | | } |
| | | |
| | | //黑白名单添加 |
| | | export function blacklistAppend(params) { |
| | | return request.post('/blacklist/insert', params); |
| | | } |
| | | //黑白名单删除 |
| | | export function deletelacklist(params) { |
| | | return request.get('/blacklist/deletes', { params: params }); |
| | | } |
| | | //黑白名单修改 |
| | | export function updateblacklist(params) { |
| | | return request.post('/blacklist/update', params); |
| | | } |
| | | //黑白名单统计 |
| | | export function blacklistSelectCount(params) { |
| | | return request.get('/blacklist/selectCount', { params: params }); |
| | | } |
| | | |
| | | //元数据管理列表获取 |
| | | export function select_meta_ByPageAndCount(params) { |
| | | return request.get('/meta/selectByPageAndCount', { params: params }); |
| | | } |
| | | // //元数据管理列表新增 |
| | | export function insertMeta(params) { |
| | | return request.post('/meta/insert', params); |
| | | } |
| | | |
| | | //元数据管理列表修改 |
| | | export function updateMeta(params) { |
| | | return request.post('/meta/update', params); |
| | |
| | | { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 } |
| | | ).toString(); |
| | | } |
| | | |
| | | // 查询当前用户的权限授权实体集合 |
| | | export function getPerms() { |
| | | return request.get('perms/selectPermsEntity'); |
| | | } |