AppService.js
12.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
import {post, upload} from "./rpc"
const xnService = {
login: (data) => {
data.method = "xntalk.login";
return post(data)
},
/**
* 获取承租人信息和用户id
* @param data
* @returns {*}
*/
getPassport: (data) => {
data.method = "api.security.passport.get";
return post(data)
},
/**
* 获取承租人信息
* @param data
* @returns {*}
*/
getUser: (data) => {
data.method = "api.master.system.user.get";
return post(data)
},
/**
* 高级查询等待我审批的任务
* @param data
* @returns {*}
*/
findMyToDoTask: (data) => {
data.method = "wf.self.task.find";
return post(data)
},
/**
* 高级查询我审批过的任务
* @param data
* @returns {*}
*/
findMyFinishedTask: (data) => {
data.method = "wf.self.finished.task.find";
return post(data)
},
/**
* 获取流程实例
* @param data
* @returns {*}
*/
getFlowTask: (data) => {
data.method = "wf.flow.get";
return post(data)
},
/**
* 高级查询我提交的任务
* @param data
* @returns {*}
*/
findMyCreatedTask: (data) => {
data.method = "wf.self.flow.find";
return post(data)
},
/**
* 查询我关注的流程列表
* @param data
* @returns {*}
*/
findMyFavoriteFlow: (data) => {
data.method = "wf.self.favorite.flow.find";
return post(data)
},
/**
* 转交流程实例步骤
* @param data
* @returns {*}
*/
transferFlowStep: (data) => {
data.method = "wf.task.transfer";
return post(data)
},
/**
* 审批通过流程实例步骤
* @param data
* @returns {*}
*/
approveFlowStep: (data) => {
data.method = "wf.task.approve";
return post(data)
},
/**
* 否决流程实例步骤.将会结束流程实例
* @param data
* @returns {*}
*/
rejectFlowStep: (data) => {
data.method = "wf.task.reject";
return post(data)
},
/**
* 回退程实例步骤.将会结束流程实例
* @param data
* @returns {*}
*/
untreadFlowStep: (data) => {
data.method = "wf.task.untread";
return post(data)
},
/**
* 并加签
* @param data
* @returns {*}
*/
addFlowStep: (data) => {
data.method = "wf.task.add";
return post(data)
},
/**
* 前加签.
* @param data
* @returns {*}
*/
beforeAddFlowStep: (data) => {
data.method = "wf.task.add.before";
return post(data)
},
/**
* 后加签
* @param data
* @returns {*}
*/
afterAddFlowStep: (data) => {
data.method = "wf.task.add.after";
return post(data)
},
/**
* 获取详情
* @param data
* @returns {*}
*/
getDetailFlowForm: (data) => {
data.method = "wf.flow.detail.get";
return post(data)
},
/**
* 附件查看
* @param data
* @returns {*}
*/
apiFoundationAttachmentGetListByBizInfo: (data) => {
data.method = "api.foundation.attachment.getlist.bybizinfo";
return post(data)
},
/**
*获取审批流
* @param data
* @returns {*}
*/
getWorkflowTrend: (data) => {
data.method = "api.workflow.flow.trend.get";
return post(data)
},
/**
* 查询组织部门
* @param data
* @returns {*}
*/
organizationQuery: (data) => {
data.method = "xntalk.organization.query";
return post(data)
},
/**
* 评论
* @param data
* @returns {*}
*
*
anonymous:false,
userId:scope.userId
scope.comment.businessId=scope.flowId;
content
*/
createComment: (data) => {
data.method = "api.suggest.suggest.comment.create";
return post(data)
},
/**
* 查询工作流类型
* @param data
* @returns {*}
*/
findCategory: (data) => {
data.method = "wf.category.find";
return post(data)
},
/**
* 查询工作流最近常用类别
* @param data
* @returns {*}
*/
findRecentProcess: (data) => {
data.method = "api.workflow.process.recent.find";
return post(data)
},
/**
* 根据userId获取对应的Union对象
* @param data
* @returns {*}
*/
getUnionByUserId: (data) => {
data.method = "api.union.get.byUserId";
return post(data)
},
/**
* 根据Id获取对应的Workflow对象
* @param data
* @returns {*}
*/
getWorkflowById: (data) => {
data.method = "api.workflow.get.process";
return post(data)
},
/**
* 根据Id获取对应的WorkflowProcess对象
* @param data
* @returns {*}
*/
getWorkflowProcessById: (data) => {
data.method = "api.workflow.find.process.attribute";
return post(data)
},
/**
* 获取经营单元
* @param data
* @returns {*}
*/
findOperatingunit: (data) => {
data.method = "api.masterdata.operatingunit.find";
return post(data)
},
/**
*
* @param data
* @returns {*}
*/
createWorkflow: (data) => {
data.method = "api.workflow.create_start.flow";
return post(data)
},
/**
* 流程管理-创建流程
* @param data
* @returns {*}
*/
createWorkflow_new: (data) => {
data.method = "wf.flow.save";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.flow.save";
return post(data)
},
/**
* 流程管理-启动流程
* @param data
* @returns {*}
*/
startWorkflow: (data) => {
data.method = "wf.flow.start";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.flow.start";
return post(data)
},
/**
* 流程管理-预览流程
* @param data
* @returns {*}
*/
previewWorkflow: (data) => {
data.method = "wf.process.preview";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.flow.start";
return post(data)
},
/**
*
* @param data
* @returns {*}
*/
getPosition: (data) => {
data.method = "api.position.find";
return post(data)
},
/**
* 上传图片
* @param data
* @returns {*}
*/
uploadImage: (file) => {
return upload(file)
},
/*获取阿里云上传信息*/
getAccess: (data) => {
data.method = "api.sns.file.upload.auth.info.get";
return post(data)
},
/**
* 上传图片
* @param data
* @returns {*}
*/
uploadbyfileid: (data) => {
data.method = "api.foundation.attachmentByFileId.upload";
return post(data)
},
/** 验证验证码
*/
getNewId: (data) => {
data.method = "api.foundation.newId.get"
return post(data)
},
getWaitingFlowStep: (data) => {
data.method = "api.workflow.get.waiting.flow.step"
return post(data)
},
getDetailInfo: (data) => {
data.method = "api.workflow.flow.trend.attachment.flowForm.get";
return post(data);
},
/** 查询抄送我的任务
*/
findMyShareFlow: (data) => {
data.method = "wf.self.share.flow.find";
return post(data);
},
/** 标记抄送我的任务为已读
*/
findMyShareFlowMark: (data) => {
data.method = "wf.my.share.flow.mark";
return post(data);
},
/** ============== 新接口 ========= */
/**
* 查询当前用户可提交的流程列表
*/
findNewWfSubmitterProcess: (data) => {
data.method = "wf.submitter.process.find";
return post(data);
},
/**
* 根据Id获取流程定义表
*/
getNewDefinitionProcessById: (data) => {
data.method = "wf.process.definition.get";
return post(data);
},
/**
* 根据Id获取流程草稿
*/
getNewDraftProcessById: (data) => {
data.method = "wf.process.draft.get";
return post(data);
},
/**
* 扫码预览流程审批人
*/
scanPreviewApproverProcessById: (data) => {
data.method = "wf.process.approver.preview";
return post(data);
},
/**
* 预览一个流程实例
*/
previewApproverFlowById: (data) => {
data.method = "wf.flow.approver.preview";
return post(data);
},
/**
* 查询组织机构树
*/
findMasterOrganizationTree: (data) => {
data.method = "xn.master.organizationTree.find";
return post(data);
},
/**
* 模糊查询组织机构
*/
findMasterOrganization: (data) => {
data.method = "xn.master.organization.find";
return post(data);
},
/**
* 高级搜索经营单元
*/
findMasterOperatingUnit: (data) => {
data.method = "master.operating.unit.find";
return post(data);
},
/**
* 模糊查询岗位列表
*/
findMasterPosition: (data) => {
data.method = "xn.master.position.find";
return post(data);
},
/**
* 查询用户
*/
findUserList: (data) => {
data.method = "api.user.user.find";
return post(data);
},
/**
* 查询标签标签
*/
findTag: (data) => {
data.method = "wf.tag.find";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.tag.create";
return post(data);
},
/**
* 创建标签
*/
createTag: (data) => {
data.method = "wf.tag.create";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.tag.create";
return post(data);
},
/**
* 更新标签
*/
updateTag: (data) => {
data.method = "wf.tag.update";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.tag.update";
return post(data);
},
/**
* 删除标签
*/
deleteTag: (data) => {
data.method = "wf.tag.delete";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.tag.delete";
return post(data);
},
/**
* 保存流程标签
*/
saveFlowTag: (data) => {
data.method = "wf.flow.tag.save";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.flow.tag.save";
return post(data);
},
/**
* 创建流程审批常用意见
*/
createWfComment: (data) => {
data.method = "wf.comment.create";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.comment.create";
return post(data);
},
/**
* 删除流程审批常用意见
*/
deleteWfComment: (data) => {
data.method = "wf.comment.delete";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.comment.delete";
return post(data);
},
/**
* 更新流程审批常用意见
*/
updateWfComment: (data) => {
data.method = "wf.comment.update";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.comment.update";
return post(data);
},
/**
* 查询流程审批常用意见
*/
findWfComment: (data) => {
data.method = "wf.comment.find";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.comment.find";
return post(data);
},
/**
* 常用意见排序
*/
sortWfComment: (data) => {
data.method = "wf.comment.list.sort";
// data.useMoke = true;
// data.mokeUrl = "http://yapi.xiniunet.com/mock/211/wf.comment.sort";
return post(data);
},
/**
* 校验流程预览时选择的提交人
*/
ckeckSubmitUser: (data) => {
data.method = "wf.process.identity.get";
// data.useMoke = true;
// data.mokeUrl = "";
return post(data);
},
/**
* 流程收藏流程
*/
createFlowCollect: (data) => {
data.method = "wf.flow.collect.create";
// data.useMoke = true;
// data.mokeUrl = "";
return post(data);
},
/**
* 流程收藏流程
*/
deleteFlowCollect: (data) => {
data.method = "wf.flow.collect.delete";
// data.useMoke = true;
// data.mokeUrl = "";
return post(data);
},
/**
* 获取流程表单描述(摘要)
*/
getFlowDescribe: (data) => {
data.method = "wf.flow.describe";
// data.useMoke = true;
// data.mokeUrl = "";
return post(data);
}
};
export default xnService;