index.js 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import request from '@/utils/request'
  2. // 查询被申请人案件列表
  3. export function respondentList(data) {
  4. return request({
  5. 'url': '/evidence/all',
  6. method: 'get',
  7. params: data
  8. })
  9. }
  10. // 查询详情
  11. export function respondentDetail(data) {
  12. return request({
  13. 'url': `/evidence/${data}`,
  14. method: 'get',
  15. })
  16. }
  17. // 查询仲裁员列表
  18. export function arbitratorList(data) {
  19. return request({
  20. 'url': `/caseApplication/listMediator`,
  21. method: 'get',
  22. params: data
  23. })
  24. }
  25. // 确认证据
  26. export function evidenceConfirm() {
  27. return request({
  28. 'url': `/evidence/confirm`,
  29. method: 'put',
  30. })
  31. }
  32. // 案件质证
  33. export function evidenceCrossexami(data) {
  34. return request({
  35. 'url': `/evidence/crossexami`,
  36. method: 'post',
  37. data: data
  38. })
  39. }
  40. // 查询物流信息
  41. export function logistics(data) {
  42. return request({
  43. 'url': `/adjudication/logistics`,
  44. method: 'get',
  45. data: data
  46. })
  47. }
  48. // 查询案件列表
  49. export function caseApplicationList(data) {
  50. return request({
  51. 'url': `/caseApplication/list`,
  52. method: 'get',
  53. params: data
  54. })
  55. }
  56. // 调解系统查看相关案件
  57. export function caseApplicationTj(data) {
  58. return request({
  59. 'url': `/caseApplication/list`,
  60. method: 'get',
  61. params: data
  62. })
  63. }
  64. // 调解系统查看相关案件详情
  65. export function selectById(data) {
  66. return request({
  67. 'url': `/caseApplication/selectById`,
  68. method: 'get',
  69. params: data
  70. })
  71. }
  72. // 调解系统选择仲裁员时间
  73. export function updateBooking(data) {
  74. return request({
  75. 'url': `/caseApplication/updateBooking`,
  76. method: 'post',
  77. data: data
  78. })
  79. }
  80. // 查询按钮列表
  81. export function queryCaseFlowInfo(data) {
  82. return request({
  83. 'url': `/case/flow/queryCaseFlowInfo`,
  84. method: 'post',
  85. data: data
  86. })
  87. }