volumeManagement.js 896 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import request from '@/utils/request'
  2. // 模块卷批量删除
  3. export function moduleVolumeBatchDel(data) {
  4. return request({
  5. url: `/bank/module/batch/del`,
  6. method: 'post',
  7. data
  8. })
  9. }
  10. // 章批量删除
  11. export function chapterVolumeBatchDel(data) {
  12. return request({
  13. url: `/bank/chapter/batch/del`,
  14. method: 'post',
  15. data
  16. })
  17. }
  18. // 试卷批量删除
  19. export function paperBatchDel(data) {
  20. return request({
  21. url: `/bank/exam/batch/del`,
  22. method: 'post',
  23. data
  24. })
  25. }
  26. // 题目批量删除
  27. export function questionBatchDel(data) {
  28. return request({
  29. url: `/bank/question/batch/del`,
  30. method: 'post',
  31. data
  32. })
  33. }
  34. // 知识点列表
  35. export function knowledgeList(query) {
  36. return request({
  37. url: `/exam/knowledge/list`,
  38. method: 'get',
  39. params: query
  40. })
  41. }