feature: 白名单管理

1. 自助入司白名单校验
This commit is contained in:
mengxiaolong
2020-12-07 18:24:19 +08:00
parent f0972cc9cf
commit 5ce023f3c8
2 changed files with 172 additions and 28 deletions

View File

@@ -0,0 +1,11 @@
import request from '@/assets/js/utils/request'
import getUrl from '@/assets/js/utils/get-url'
// 白名单查询
export function getWhitelist(data) {
return request({
url: getUrl('/agent/white/getWhiteInfo', 1),
method: 'post',
data
})
}