123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. }
  88. // 根据机构id查询模板
  89. export function getTemplate(data) {
  90. return request({
  91. url: `/deptIdentify/getTemplate`,
  92. method: 'get',
  93. params: data
  94. })
  95. }
  96. // 根据身份证获取生日和性别
  97. export function getInfoByIdCard(query) {
  98. return request({
  99. url: '/caseApplication/getInfoByIdCard',
  100. method: 'get',
  101. params: query
  102. })
  103. }
  104. /** 新增案件 */
  105. export function caseApplicationInsert(data) {
  106. return request({
  107. url: '/caseApplication/insert',
  108. method: 'post',
  109. data: data
  110. })
  111. }
  112. // 修改立案申请接口
  113. export function updateComfire(data) {
  114. return request({
  115. url: "/caseApplication/update",
  116. method: "post",
  117. data: data,
  118. })
  119. }
  120. /** 根据id查询案件信息 */
  121. export function caseApplicationSelectById(data) {
  122. return request({
  123. url: '/caseApplication/selectById',
  124. method: 'get',
  125. params: data
  126. })
  127. }