mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-16 06:16:44 +08:00
25 lines
381 B
JavaScript
25 lines
381 B
JavaScript
/**问卷*/
|
|
import ajax from '@/utils/xajax.js'
|
|
|
|
// 问卷列表
|
|
const pageList=function(query) {
|
|
return ajax.post('/xboe/survey/pagelist',query);
|
|
}
|
|
|
|
//问卷内容
|
|
const detail=function(id) {
|
|
return ajax.get('/xboe/survey/detail?id='+id);
|
|
}
|
|
|
|
//问卷统计
|
|
const stat=function() {
|
|
return ajax.get('/xboe/survey/stat');
|
|
}
|
|
|
|
|
|
export default{
|
|
pageList,
|
|
detail,
|
|
stat
|
|
}
|