123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- import { get, post, path } from "@/http/http.js"
- /**
- * 微信登录
- */
- export function api_wechatLoginEncrypt(data){
- return post("/auth/wechatLoginEncrypt", data);
- }
- /**
- * 微信登录2
- */
- export function api_wechatAuth(data){
- return post("/auth/wechatAuth", data);
- }
- /**
- * 绑定工号
- */
- export function api_bindAccount(data){
- return post("/auth/bindAccount", 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("/bpm/data/fetchDataList/incidentcategory", data);
- }
- /**
- * 获取报修图片列表
- */
- export function api_wechatRequesterIncident(data){
- return get("/common/common/listAttachment/wechatRequesterIncident/" + data);
- }
- /**
- * 获取通话音频
- */
- export function api_callrecord(data){
- return post("/bpm/data/fetchDataList/callrecord", data);
- }
- /**
- * 获取工作组列表
- */
- export function api_group(data){
- return post("/user/data/fetchDataList/group", data);
- }
- /**
- * 获取人员列表
- */
- export function api_user(data){
- return post("/user/data/fetchDataList/user", data);
- }
- /**
- * 获取院区列表
- */
- export function api_branch(data){
- return post("/user/data/fetchDataList/branch", 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("/bpm/data/querySummaryDoc", data);
- }
- /**
- * 获取耗材列表
- */
- export function api_consumable(data){
- return post("/bpm/data/fetchDataList/consumable", data);
- }
- /**
- * 添加/修改/删除耗材
- */
- export function api_addSummaryDoc(data){
- return post("/bpm/data/addSummaryDoc", data);
- }
- /**
- * 获取工时管理列表
- */
- export function api_workHourManagement(data){
- return post("/bpm/data/fetchDataList/workHourManagement", data);
- }
- /**
- * 上传附件
- */
- export function api_uploadAttachment(type, id){
- return `${path}/common/common/uploadAttachment/${type}/${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("/user/data/fetchDataList/department", data);
- }
- /**
- * 获取地点列表
- */
- export function api_place(data){
- return post("/user/data/fetchDataList/place", data);
- }
|