Files
learning-system-mobile/api/modules/scene.js
2022-05-29 18:59:24 +08:00

18 lines
300 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 应用场景
*/
import ajax from '@/utils/xajax.js'
/**
* 按有效性查询列表
* @param resType 有效性 1课程2文章3案例4问答
* @returns
*/
const list = function(resType) {
return ajax.get('/xboe/scene/list?resType=' + resType);
}
export default {
list
}