mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-16 06:16:44 +08:00
19 lines
241 B
JavaScript
19 lines
241 B
JavaScript
import ajax from '@/utils/xajax.js'
|
|
|
|
|
|
/**
|
|
* 查询白名单
|
|
* @param {
|
|
* env:'开发环境'
|
|
* } data
|
|
* @returns
|
|
*/
|
|
const getList =function(env) {
|
|
return ajax.post('/xboe/sys/whiteuser/codes',env);
|
|
}
|
|
|
|
|
|
export default{
|
|
getList
|
|
}
|