api.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. import { get, post, path } from "@/http/http.js"
  2. /**
  3. * 微信登录
  4. */
  5. export function api_wechatLoginEncrypt(data){
  6. return post("/auth/wxlogina", data);
  7. }
  8. /**
  9. * 微信登录2
  10. */
  11. export function api_wechatAuth(data){
  12. return post("/auth/wxlogin", data);
  13. }
  14. /**
  15. * 绑定工号
  16. */
  17. export function api_bindAccount(data){
  18. return post("/data/isBindAccount", 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("/incident/listIncidentCategory", 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_wechatIncidentRecord(data){
  66. return get("/common/common/listAttachment/wechatIncidentRecord/" + data);
  67. }
  68. /**
  69. * 获取通话音频
  70. */
  71. export function api_callrecord(data){
  72. return post("/simple/data/fetchDataList/callLog", data);
  73. }
  74. export function api_getRecordCall(data){
  75. return post("/callLog/getRecordByPath", data);
  76. }
  77. /**
  78. * 获取工作组列表
  79. */
  80. export function api_group(data){
  81. return post("/data/fetchDataList/group2", data);
  82. }
  83. /**
  84. * 获取人员列表
  85. */
  86. export function api_user(data){
  87. return post("/data/fetchDataList/user", data);
  88. }
  89. /**
  90. * 获取院区列表
  91. */
  92. export function api_branch(data){
  93. return post("/data/fetchDataList/hospital", data);
  94. }
  95. /**
  96. * 获取责任科室列表
  97. */
  98. export function api_dutyDepartment(data){
  99. return post("/user/data/fetchDataList/dutyDepartment", data);
  100. }
  101. /**
  102. * 获取事件详情
  103. */
  104. export function api_incidentDetail(data){
  105. return get("/simple/data/fetchData/incident/" + data);
  106. }
  107. /**
  108. * 转派/指派/退回/延期处理/新建事件
  109. */
  110. export function api_incidentTask(type, data){
  111. return post("/flow/incident/task/" + type, data);
  112. }
  113. /**
  114. * 获取汇总单信息
  115. */
  116. export function api_querySummaryDoc(data){
  117. return post("/incident/data/querySummaryDoc", data);
  118. }
  119. /**
  120. * 获取耗材列表
  121. */
  122. export function api_consumable(data){
  123. return post("/bpm/data/fetchDataList/consumable", data);
  124. }
  125. /**
  126. * 添加/修改/删除耗材
  127. */
  128. export function api_addSummaryDoc(data){
  129. return post("/incident/data/addSummaryDoc", data);
  130. }
  131. /**
  132. * 获取工时管理列表
  133. */
  134. export function api_workHourManagement(data){
  135. return post("/bpm/data/fetchDataList/workHourManagement", data);
  136. }
  137. /**
  138. * 上传附件
  139. */
  140. export function api_uploadAttachment(type, id, extra){
  141. if(extra){
  142. return `${path}/common/common/uploadAttachment/${type}/${id}/${extra}`
  143. }else{
  144. return `${path}/common/common/uploadAttachment/${type}/${id}/${id}`
  145. }
  146. }
  147. /**
  148. * 获取附件
  149. */
  150. export function api_listAttachment(type, id){
  151. return get(`/common/common/listAttachment/${type}/${id}`);
  152. }
  153. /**
  154. * 获取事件流程
  155. */
  156. export function api_incidentLog(data){
  157. return post("/simple/data/fetchDataList/incidentLog", data);
  158. }
  159. /**
  160. * 获取报修科室列表
  161. */
  162. export function api_department(data){
  163. return post("/data/fetchDataList/department", data);
  164. }
  165. /**
  166. * 获取地点列表
  167. */
  168. export function api_place(data){
  169. return post("/user/data/fetchDataList/place", data);
  170. }
  171. /**
  172. * 获取系统配置
  173. */
  174. export function api_systemConfiguration(data){
  175. return post("/sysinfo/data/fetchDataList/systemConfiguration", data);
  176. }
  177. /**
  178. * 获取事件单号
  179. */
  180. export function api_sj(){
  181. return get("/bpm/bpm/restful");
  182. }
  183. /**
  184. * 获取故障耗材
  185. */
  186. export function api_incidentCategoryConsumable(data){
  187. return post("/user/data/fetchDataList/incidentCategoryConsumable", data);
  188. }
  189. // 获取知识库列表
  190. export function api_getSolution(data){
  191. return post("/data/fetchDataList/solution", data);
  192. }
  193. /**
  194. * 账号密码登录
  195. */
  196. export function api_loginEncrypt(data){
  197. return post("/auth/loginEncrypt", data);
  198. }
  199. /**
  200. * 获取巡检执行列表
  201. */
  202. export function api_inspectionTask(data){
  203. return post("/simple/data/fetchDataList/inspectionTask", data);
  204. }
  205. /**
  206. * 获取巡检点列表
  207. */
  208. export function api_inspectionNode(data){
  209. return post("/simple/data/fetchDataList/inspectionNode", data);
  210. }
  211. /**
  212. * 修改巡检点
  213. */
  214. export function api_inspectionNodeEdit(data){
  215. return post("/data/updData/inspectionNode", data);
  216. }
  217. /**
  218. * 获取巡检执行列表-数量
  219. */
  220. export function api_listCount(data){
  221. return post("/itsmTemp/listCount", data);
  222. }
  223. /**
  224. * 获取字典列表
  225. */
  226. export function api_hsms_getDictionary(data){
  227. return post("/hsms/common/getDictionary", data);
  228. }
  229. /**
  230. * 获取巡检单列表
  231. */
  232. export function api_inspectionForm(data){
  233. return post("/simple/data/fetchDataList/inspectionForm", data);
  234. }
  235. /**
  236. * 获取楼栋列表
  237. */
  238. export function api_building(data){
  239. return post("/hsms/fetchDataList/building", data);
  240. }
  241. /**
  242. * 巡检签到
  243. */
  244. export function api_scanCode(data){
  245. return post("/itsmTemp/scanCode", data);
  246. }
  247. /**
  248. * 巡检执行项保存
  249. */
  250. export function api_addModel(data){
  251. return post("/itsmTemp/addModel", data);
  252. }
  253. /**
  254. * 巡检扫一扫
  255. */
  256. export function api_scanNodeCode(data){
  257. return post("/inspection/scanNodeCode", data);
  258. }
  259. /**
  260. * 报修端-公告
  261. */
  262. export function api_getNotice(data){
  263. return post("/user/data/fetchDataList/notice", data);
  264. }
  265. /**
  266. * 报修端-首页
  267. */
  268. export function api_getCount(data){
  269. return post("/repair/incident/count", data);
  270. }
  271. /**
  272. * 报修端-保存个人信息
  273. */
  274. export function api_userSave(data){
  275. return post("/user/data/updData/user", data);
  276. }
  277. /**
  278. * 报修端-保存个人信息
  279. */
  280. export function api_taskresolve(data){
  281. return post("/flow/incident/task/resolve", data);
  282. }
  283. /**
  284. * 报修端-提交报修
  285. */
  286. export function api_request(data){
  287. return post("/flow/incident/task/request", data);
  288. }
  289. // 通用list
  290. export function getFetchDataList(type, target, data){
  291. return post("/" + type + "/fetchDataList/" + target, data);
  292. }
  293. // 报修资产扫描
  294. export function api_repairScanCode(data){
  295. return post("/repair/scanCode", data);
  296. }
  297. // 报修工单撤回
  298. export function api_repairCancel(data){
  299. return post("/flow/incident/task/cancel", data);
  300. }
  301. /**
  302. * 获取科室详情
  303. */
  304. export function api_departmentDetail(id){
  305. return get("/simple/data/fetchData/department/" + id);
  306. }