File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed
components/bpmnProcessDesigner/package/penal/base
views/bpm/processInstance Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 2
2
<div class =" panel-tab__content" >
3
3
<el-form size =" mini" label-width =" 90px" :model =" model" :rules =" rules" @submit.native.prevent >
4
4
<div v-if =" elementBaseInfo.$type === 'bpmn:Process'" > <!-- 如果是 Process 信息的时候,使用自定义表单 -->
5
+ <el-link href =" https://doc.iocoder.cn/bpm/#_3-%E4%BC%9A%E7%AD%BE-%E6%88%96%E7%AD%BE"
6
+ type =" danger" target =" _blank" >如何实现实现会签、或签?</el-link >
5
7
<el-form-item label =" 流程标识" prop =" key" >
6
8
<el-input v-model =" model.key" placeholder =" 请输入流标标识"
7
9
:disabled =" model.id !== undefined && model.id.length > 0" @change =" handleKeyUpdate" />
Original file line number Diff line number Diff line change @@ -412,15 +412,16 @@ export default {
412
412
},
413
413
/** 处理审批退回的操作 */
414
414
handleBack (task ) {
415
- const data = {
416
- id: task .id ,
417
- assigneeUserId: 1
418
- }
419
- // this.$modal.msgError("暂不支持【--退回】功能!");
420
- backTask (data).then (response => {
421
- this .$modal .msgSuccess (" 回退成功!" );
422
- this .getDetail (); // 获得最新详情
423
- });
415
+ this .$modal .msgError (" 暂不支持【退回】功能!" );
416
+ // 可参考 http://blog.wya1.com/article/636697030/details/7296
417
+ // const data = {
418
+ // id: task.id,
419
+ // assigneeUserId: 1
420
+ // }
421
+ // backTask(data).then(response => {
422
+ // this.$modal.msgSuccess("回退成功!");
423
+ // this.getDetail(); // 获得最新详情
424
+ // });
424
425
}
425
426
}
426
427
};
You can’t perform that action at this time.
0 commit comments