mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-15 05:46:43 +08:00
14 lines
251 B
JavaScript
14 lines
251 B
JavaScript
|
|
import ajax from '@/utils/xajax.js'
|
|
|
|
/**
|
|
* @param {Object} device 不包含的平台, 1表pc, 2表移动端
|
|
*/
|
|
const findByNoDevice=function (device){
|
|
return ajax.get('/xboe/m/popup/user?device='+device);
|
|
}
|
|
|
|
export default {
|
|
findByNoDevice
|
|
}
|