|
@@ -181,11 +181,8 @@
|
|
:subTableName="subTableName"
|
|
:subTableName="subTableName"
|
|
@addList="() => {}"
|
|
@addList="() => {}"
|
|
></DialogTemplate>
|
|
></DialogTemplate>
|
|
- <component
|
|
|
|
- v-else-if="formType == 'designForm'"
|
|
|
|
- :is="myForm"
|
|
|
|
- ref="myFormRef"
|
|
|
|
- ></component>
|
|
|
|
|
|
+ <component :is="myForm" ref="myFormRef"></component>
|
|
|
|
+ <!-- <CG1 ref="myFormRef"></CG1> -->
|
|
<span slot="footer" class="dialog-footer">
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="closeExecuteNode">取消</el-button>
|
|
<el-button @click="closeExecuteNode">取消</el-button>
|
|
<el-button type="primary" @click="executeNode">运行</el-button>
|
|
<el-button type="primary" @click="executeNode">运行</el-button>
|
|
@@ -206,13 +203,17 @@ import {
|
|
import { triggerExceptionNode } from "@/api/bpmprocess/process";
|
|
import { triggerExceptionNode } from "@/api/bpmprocess/process";
|
|
|
|
|
|
import getNodeSequence from "@/utils/bpmn/getNodeSequence";
|
|
import getNodeSequence from "@/utils/bpmn/getNodeSequence";
|
|
-import GY1 from "./dialogCompments/GY1.vue";
|
|
|
|
import { getForm } from "@/api/dragform/form";
|
|
import { getForm } from "@/api/dragform/form";
|
|
import DialogTemplate from "@/views/dialogTemplate/components/index.vue";
|
|
import DialogTemplate from "@/views/dialogTemplate/components/index.vue";
|
|
|
|
+
|
|
|
|
+// 弹窗表单组件
|
|
|
|
+import GY1 from "./dialogCompments/GY/GY1.vue";
|
|
|
|
+// import CG1 from "./dialogCompments/test-component/CG/CG1.vue";
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
name: "processMange",
|
|
name: "processMange",
|
|
props: [],
|
|
props: [],
|
|
- components: { GY1, DialogTemplate },
|
|
|
|
|
|
+ components: { GY1, DialogTemplate, CG1 },
|
|
dicts: ["bpm_type", "task_process_state"],
|
|
dicts: ["bpm_type", "task_process_state"],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|