2022年5月29日从svn移到git

This commit is contained in:
daihh
2022-05-29 18:56:34 +08:00
commit b050613020
488 changed files with 68444 additions and 0 deletions

24
src/api/modules/survey.js Normal file
View File

@@ -0,0 +1,24 @@
/**问卷*/
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
}