调解系统PC端服务

caseManagement.js 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. import request from '@/utils/request'
  2. // 查询案件列表
  3. export function caseApplicationList(data) {
  4. return request({
  5. url: 'caseApplication/list',
  6. method: 'get',
  7. params: data
  8. })
  9. }
  10. /** 新增案件 */
  11. export function caseApplicationInsert(data) {
  12. return request({
  13. url: 'caseApplication/insert',
  14. method: 'post',
  15. data: data
  16. })
  17. }
  18. /** 根据id查询案件信息 */
  19. export function caseApplicationSelectById(data) {
  20. return request({
  21. url: '/caseApplication/selectById',
  22. method: 'get',
  23. params: data
  24. })
  25. }
  26. /** 案件证据查询 */
  27. export function getFileList(data) {
  28. return request({
  29. url: "/common/fileList",
  30. method: "get",
  31. params: data,
  32. });
  33. }
  34. /** 批量上传证据 */
  35. export function batchUpload(data) {
  36. return request({
  37. url: "/caseApplication/batchUpload",
  38. method: "post",
  39. data: data,
  40. });
  41. }
  42. // 提交
  43. export function submitCaseApply(data) {
  44. return request({
  45. url: '/caseApplication/submit',
  46. method: 'post',
  47. data: data
  48. })
  49. }
  50. // 缴费确认
  51. export function confirmPaid(data) {
  52. return request({
  53. url: "/pay/confirmPaid",
  54. method: "post",
  55. data: data,
  56. });
  57. }
  58. // 缴费确认(被申请人)
  59. export function resConfirmPaid(data) {
  60. return request({
  61. url: "/pay/resConfirmPaid",
  62. method: "post",
  63. data: data,
  64. });
  65. }
  66. // 案件id查询缴费清单
  67. export function selectPaymentDetail(data) {
  68. return request({
  69. url: "/pay/selectPaymentDetail",
  70. method: "get",
  71. params: data,
  72. });
  73. }
  74. //案件受理
  75. export function accept(data) {
  76. return request({
  77. url: "/caseApplication/accept",
  78. method: "post",
  79. data: data,
  80. });
  81. }
  82. export function listMediator(data) {
  83. return request({
  84. url: "caseApplication/listMediator",
  85. method: "get",
  86. params: data,
  87. });
  88. }
  89. // 确认仲裁员以及时间
  90. export function updateBooking(data) {
  91. return request({
  92. url: "/caseApplication/updateBooking",
  93. method: "post",
  94. data: data,
  95. });
  96. }
  97. //用印申请
  98. export function sealApply(data) {
  99. return request({
  100. url: "/mssignSeal/sealApply",
  101. method: "post",
  102. data: data,
  103. });
  104. }
  105. // 用印确认
  106. export function selectSealUrl(data) {
  107. return request({
  108. url: "/mssignSeal/selectSealUrl",
  109. method: "post",
  110. data: data,
  111. });
  112. }
  113. //查询预约信息
  114. export function selectReservation(data) {
  115. return request({
  116. url: "/caseApplication/selectReservation",
  117. method: "get",
  118. params: data,
  119. });
  120. }
  121. //核实调解员
  122. export function verifyMediator(data) {
  123. return request({
  124. url: "/caseApplication/verifyMediator",
  125. method: "post",
  126. data: data,
  127. });
  128. }
  129. // 确认调节时间
  130. export function confirmDate(data) {
  131. return request({
  132. url: "/caseApplication/confirmDate",
  133. method: "post",
  134. data: data,
  135. })
  136. }
  137. // 查看案件流程
  138. export function selectCaseProgress(data) {
  139. return request({
  140. url: "/mssignSeal/selectCaseProgress",
  141. method: "post",
  142. data: data,
  143. })
  144. }
  145. // 查看案件日志
  146. export function listCaseLogRecord(data) {
  147. return request({
  148. url: "/mssignSeal/listCaseLogRecord",
  149. method: "post",
  150. data: data,
  151. })
  152. }
  153. // 案件归档
  154. export function msCaseFile(data) {
  155. return request({
  156. url: "/mssignSeal/msCaseFile",
  157. method: "post",
  158. data: data,
  159. })
  160. }
  161. //生成调解书
  162. export function mediation(data) {
  163. return request({
  164. url: "/caseApplication/mediation",
  165. method: "post",
  166. data: data,
  167. })
  168. }
  169. //申请人和被申请人签收调解书
  170. export function msCaseSign(data) {
  171. return request({
  172. url: "/mssignSeal/msCaseSign",
  173. method: "post",
  174. data: data,
  175. })
  176. }
  177. //确认调解书
  178. export function confirmMediation(data) {
  179. return request({
  180. url: "/caseApplication/confirmMediation",
  181. method: "post",
  182. data: data,
  183. })
  184. }
  185. // 查询部门列表
  186. export function listDeptApplied(query) {
  187. return request({
  188. url: '/system/dept/selectList',
  189. method: 'get',
  190. params: query
  191. })
  192. }
  193. // 修改立案申请接口
  194. export function updateComfire(data) {
  195. return request({
  196. url: "/caseApplication/update",
  197. method: "post",
  198. data: data,
  199. })
  200. }
  201. // 根据身份证获取生日和性别
  202. export function getInfoByIdCard(query) {
  203. return request({
  204. url: '/caseApplication/getInfoByIdCard',
  205. method: 'get',
  206. params: query
  207. })
  208. }
  209. // 签名
  210. export function msCaseSignUrlApplyPC(data) {
  211. return request({
  212. url: '/mssignSeal/msCaseSignUrlApplyPC',
  213. method: 'post',
  214. data: data
  215. })
  216. }
  217. // 签名
  218. export function getUserInfo(query) {
  219. return request({
  220. url: '/caseApplication/getUserInfo',
  221. method: 'get',
  222. params: query
  223. })
  224. }
  225. // 确定会议结果
  226. export function confirmMeetingResult(data) {
  227. return request({
  228. url: '/caseApplication/confirmMeetingResult',
  229. method: 'post',
  230. data: data
  231. })
  232. }
  233. // 根据用户id查询是否为调解员
  234. export function secretaryRoleByUserId(query) {
  235. return request({
  236. url: '/video/secretaryRoleByUserId',
  237. method: 'get',
  238. params: query
  239. })
  240. }