应用层PC端前端服务

caseFiling.js 546B

123456789101112131415161718192021222324252627282930
  1. import request from '@/utils/request'
  2. // 档案详情查询
  3. export function adjudicationArchives(data) {
  4. return request({
  5. url: '/adjudication/archives',
  6. method: 'get',
  7. params: data
  8. })
  9. }
  10. //根据案件id查询视频列表
  11. export function videoList(data) {
  12. return request({
  13. url: '/video/videoList',
  14. method: 'get',
  15. params: data
  16. })
  17. }
  18. // 下载案件压缩包
  19. export function downloadCaseZipFile(data) {
  20. return request({
  21. url: '/caseApplication/downloadCaseZipFile',
  22. method: 'post',
  23. data: data
  24. })
  25. }