123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- import { get, post, path } from "@/http/http.js"
- /**
- * 微信登录
- */
- export function api_wechatLoginEncrypt(data){
- return post("/auth/wxlogina", data);
- }
- /**
- * 微信登录2
- */
- export function api_wechatAuth(data){
- return post("/auth/wxlogin", data);
- }
- /**
- * 绑定工号
- */
- export function api_bindAccount(data){
- return post("/data/isBindAccount", data);
- }
- /**
- * 获取系统名称
- */
- export function api_getSysNameAndLogo(){
- return get("/auth/getSysNameAndLogo");
- }
- /**
- * 获取字典列表
- */
- export function api_getDictionary(data){
- return post("/common/common/getDictionary", data);
- }
- /**
- * 获取工单列表
- */
- export function api_incident(data){
- return post("/user/data/fetchDataList/incident", data);
- }
- /**
- * 获取工单列表-数量
- */
- export function api_incident_count(data){
- return post("/flow/incident/list/count", data);
- }
- /**
- * 获取楼栋列表
- */
- export function api_area(data){
- return post("/user/data/fetchDataList/area", data);
- }
- /**
- * 获取故障现象列表
- */
- export function api_incidentcategory(data){
- return post("/incident/listIncidentCategory", data);
- }
- /**
- * 获取报修图片列表
- */
- export function api_wechatRequesterIncident(data){
- return get("/common/common/listAttachment/wechatRequesterIncident/" + data);
- }
- /**
- * 获取报修录音
- */
- export function api_wechatIncidentRecord(data){
- return get("/common/common/listAttachment/wechatIncidentRecord/" + data);
- }
- /**
- * 获取通话音频
- */
- export function api_callrecord(data){
- return post("/simple/data/fetchDataList/callLog", data);
- }
- export function api_getRecordCall(data){
- return post("/callLog/getRecordByPath", data);
- }
- /**
- * 获取工作组列表
- */
- export function api_group(data){
- return post("/data/fetchDataList/group2", data);
- }
- /**
- * 获取人员列表
- */
- export function api_user(data){
- return post("/data/fetchDataList/user", data);
- }
- /**
- * 获取院区列表
- */
- export function api_branch(data){
- return post("/data/fetchDataList/hospital", data);
- }
- /**
- * 获取责任科室列表
- */
- export function api_dutyDepartment(data){
- return post("/user/data/fetchDataList/dutyDepartment", data);
- }
- /**
- * 获取事件详情
- */
- export function api_incidentDetail(data){
- return get("/simple/data/fetchData/incident/" + data);
- }
- /**
- * 转派/指派/退回/延期处理/新建事件
- */
- export function api_incidentTask(type, data){
- return post("/flow/incident/task/" + type, data);
- }
- /**
- * 获取汇总单信息
- */
- export function api_querySummaryDoc(data){
- return post("/incident/data/querySummaryDoc", data);
- }
- /**
- * 获取耗材列表
- */
- export function api_consumable(data){
- return post("/bpm/data/fetchDataList/consumable", data);
- }
- /**
- * 添加/修改/删除耗材
- */
- export function api_addSummaryDoc(data){
- return post("/incident/data/addSummaryDoc", data);
- }
- /**
- * 获取工时管理列表
- */
- export function api_workHourManagement(data){
- return post("/bpm/data/fetchDataList/workHourManagement", data);
- }
- /**
- * 上传附件
- */
- export function api_uploadAttachment(type, id, extra){
- if(extra){
- return `${path}/common/common/uploadAttachment/${type}/${id}/${extra}`
- }else{
- return `${path}/common/common/uploadAttachment/${type}/${id}/${id}`
- }
- }
- /**
- * 获取附件
- */
- export function api_listAttachment(type, id){
- return get(`/common/common/listAttachment/${type}/${id}`);
- }
- /**
- * 获取事件流程
- */
- export function api_incidentLog(data){
- return post("/simple/data/fetchDataList/incidentLog", data);
- }
- /**
- * 获取报修科室列表
- */
- export function api_department(data){
- return post("/data/fetchDataList/department", data);
- }
- /**
- * 获取地点列表
- */
- export function api_place(data){
- return post("/user/data/fetchDataList/place", data);
- }
- /**
- * 获取系统配置
- */
- export function api_systemConfiguration(data){
- return post("/sysinfo/data/fetchDataList/systemConfiguration", data);
- }
- /**
- * 获取事件单号
- */
- export function api_sj(){
- return get("/bpm/bpm/restful");
- }
- /**
- * 获取故障耗材
- */
- export function api_incidentCategoryConsumable(data){
- return post("/user/data/fetchDataList/incidentCategoryConsumable", data);
- }
- // 获取知识库列表
- export function api_getSolution(data){
- return post("/data/fetchDataList/solution", data);
- }
-
- /**
- * 账号密码登录
- */
- export function api_loginEncrypt(data){
- return post("/auth/loginEncrypt", data);
- }
- /**
- * 获取巡检执行列表
- */
- export function api_inspectionTask(data){
- return post("/simple/data/fetchDataList/inspectionTask", data);
- }
- /**
- * 获取巡检点列表
- */
- export function api_inspectionNode(data){
- return post("/simple/data/fetchDataList/inspectionNode", data);
- }
- /**
- * 修改巡检点
- */
- export function api_inspectionNodeEdit(data){
- return post("/data/updData/inspectionNode", data);
- }
- /**
- * 获取巡检执行列表-数量
- */
- export function api_listCount(data){
- return post("/itsmTemp/listCount", data);
- }
- /**
- * 获取字典列表
- */
- export function api_hsms_getDictionary(data){
- return post("/hsms/common/getDictionary", data);
- }
- /**
- * 获取巡检单列表
- */
- export function api_inspectionForm(data){
- return post("/simple/data/fetchDataList/inspectionForm", data);
- }
- /**
- * 获取楼栋列表
- */
- export function api_building(data){
- return post("/hsms/fetchDataList/building", data);
- }
- /**
- * 巡检签到
- */
- export function api_scanCode(data){
- return post("/itsmTemp/scanCode", data);
- }
- /**
- * 巡检执行项保存
- */
- export function api_addModel(data){
- return post("/itsmTemp/addModel", data);
- }
- /**
- * 巡检扫一扫
- */
- export function api_scanNodeCode(data){
- return post("/inspection/scanNodeCode", data);
- }
- /**
- * 报修端-公告
- */
- export function api_getNotice(data){
- return post("/user/data/fetchDataList/notice", data);
- }
- /**
- * 报修端-首页
- */
- export function api_getCount(data){
- return post("/repair/incident/count", data);
- }
- /**
- * 报修端-保存个人信息
- */
- export function api_userSave(data){
- return post("/user/data/updData/user", data);
- }
- /**
- * 报修端-保存个人信息
- */
- export function api_taskresolve(data){
- return post("/flow/incident/task/resolve", data);
- }
- /**
- * 报修端-提交报修
- */
- export function api_request(data){
- return post("/flow/incident/task/request", data);
- }
- // 通用list
- export function getFetchDataList(type, target, data){
- return post("/" + type + "/fetchDataList/" + target, data);
- }
- // 报修资产扫描
- export function api_repairScanCode(data){
- return post("/repair/scanCode", data);
- }
- // 报修工单撤回
- export function api_repairCancel(data){
- return post("/flow/incident/task/cancel", data);
- }
- /**
- * 获取科室详情
- */
- export function api_departmentDetail(id){
- return get("/simple/data/fetchData/department/" + id);
- }
|