2022年5月29日 从svn移到git

This commit is contained in:
daihh
2022-05-29 18:59:24 +08:00
parent 9580ff8c9b
commit faa7afb65f
897 changed files with 171836 additions and 0 deletions

18
api/modules/scene.js Normal file
View File

@@ -0,0 +1,18 @@
/**
* 应用场景
*/
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
}