api.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. import { get, post, path } from "@/http/http.js"
  2. /**
  3. * 微信登录
  4. */
  5. export function api_wechatLoginEncrypt(data){
  6. return post("/auth/wechatLoginEncrypt", data);
  7. }
  8. /**
  9. * 微信登录2
  10. */
  11. export function api_wechatAuth(data){
  12. return post("/auth/wechatAuth", data);
  13. }
  14. /**
  15. * 绑定工号
  16. */
  17. export function api_bindAccount(data){
  18. return post("/auth/bindAccount", data);
  19. }
  20. /**
  21. * 获取系统名称
  22. */
  23. export function api_getSysNameAndLogo(){
  24. return get("/auth/getSysNameAndLogo");
  25. }
  26. /**
  27. * 获取字典列表
  28. */
  29. export function api_getDictionary(data){
  30. return post("/common/common/getDictionary", data);
  31. }
  32. /**
  33. * 获取工单列表
  34. */
  35. export function api_incident(data){
  36. return post("/user/data/fetchDataList/incident", data);
  37. }
  38. /**
  39. * 获取工单列表-数量
  40. */
  41. export function api_incident_count(data){
  42. return post("/flow/incident/list/count", data);
  43. }
  44. /**
  45. * 获取楼栋列表
  46. */
  47. export function api_area(data){
  48. return post("/user/data/fetchDataList/area", data);
  49. }
  50. /**
  51. * 获取故障现象列表
  52. */
  53. export function api_incidentcategory(data){
  54. return post("/bpm/data/fetchDataList/incidentcategory", data);
  55. }
  56. /**
  57. * 获取报修图片列表
  58. */
  59. export function api_wechatRequesterIncident(data){
  60. return get("/common/common/listAttachment/wechatRequesterIncident/" + data);
  61. }
  62. /**
  63. * 获取通话音频
  64. */
  65. export function api_callrecord(data){
  66. return post("/bpm/data/fetchDataList/callrecord", data);
  67. }
  68. /**
  69. * 获取工作组列表
  70. */
  71. export function api_group(data){
  72. return post("/user/data/fetchDataList/group", data);
  73. }
  74. /**
  75. * 获取人员列表
  76. */
  77. export function api_user(data){
  78. return post("/user/data/fetchDataList/user", data);
  79. }
  80. /**
  81. * 获取院区列表
  82. */
  83. export function api_branch(data){
  84. return post("/user/data/fetchDataList/branch", data);
  85. }
  86. /**
  87. * 获取责任科室列表
  88. */
  89. export function api_dutyDepartment(data){
  90. return post("/user/data/fetchDataList/dutyDepartment", data);
  91. }
  92. /**
  93. * 获取事件详情
  94. */
  95. export function api_incidentDetail(data){
  96. return get("/simple/data/fetchData/incident/" + data);
  97. }
  98. /**
  99. * 转派/指派/退回/延期处理/新建事件
  100. */
  101. export function api_incidentTask(type, data){
  102. return post("/flow/incident/task/" + type, data);
  103. }
  104. /**
  105. * 获取汇总单信息
  106. */
  107. export function api_querySummaryDoc(data){
  108. return post("/bpm/data/querySummaryDoc", data);
  109. }
  110. /**
  111. * 获取耗材列表
  112. */
  113. export function api_consumable(data){
  114. return post("/bpm/data/fetchDataList/consumable", data);
  115. }
  116. /**
  117. * 添加/修改/删除耗材
  118. */
  119. export function api_addSummaryDoc(data){
  120. return post("/bpm/data/addSummaryDoc", data);
  121. }
  122. /**
  123. * 获取工时管理列表
  124. */
  125. export function api_workHourManagement(data){
  126. return post("/bpm/data/fetchDataList/workHourManagement", data);
  127. }
  128. /**
  129. * 上传附件
  130. */
  131. export function api_uploadAttachment(type, id){
  132. return `${path}/common/common/uploadAttachment/${type}/${id}`
  133. }
  134. /**
  135. * 获取附件
  136. */
  137. export function api_listAttachment(type, id){
  138. return get(`/common/common/listAttachment/${type}/${id}`);
  139. }
  140. /**
  141. * 获取附件
  142. */
  143. export function api_incidentLog(data){
  144. return post("/simple/data/fetchDataList/incidentLog", data);
  145. }
  146. /**
  147. * 获取报修科室列表
  148. */
  149. export function api_department(data){
  150. return post("/user/data/fetchDataList/department", data);
  151. }
  152. /**
  153. * 获取地点列表
  154. */
  155. export function api_place(data){
  156. return post("/user/data/fetchDataList/place", data);
  157. }