Browse Source

流程管理

Shannon_mu 3 years ago
parent
commit
acdd63c368

+ 1 - 1
operationSupport/src/views/flow/popups/bpmn/sequence.vue

@@ -37,7 +37,7 @@ export default {
     methods: {
         // 根据表单获取处理结果
         getFormResult() {
-            this.$http.get('/workflow/form/' + this.formKey, { channelId: this.channelId }).then(({ data }) => {
+            this.$http.get('/sc-community/workflow/form/' + this.formKey, { channelId: this.channelId }).then(({ data }) => {
                 let actList = data ? data.userActionList || [] : [],
                     j = actList.length,
                     arr = [];

+ 9 - 2
operationSupport/src/views/flow/popups/workflowsetting.vue

@@ -31,7 +31,13 @@
                     @change="conditionChange"
                     v-if="showConditionSelect"
                 ></condition>
-                <bpmn-form v-if="showFormSelect" :values="formValues" @change="formChange" :channelId="channelId" :getFormList='getFormList'></bpmn-form>
+                <bpmn-form
+                    v-if="showFormSelect"
+                    :values="formValues"
+                    @change="formChange"
+                    :channelId="channelId"
+                    :getFormList="getFormList"
+                ></bpmn-form>
                 <service
                     v-if="showSerivceSelect"
                     :values="serviceValues"
@@ -108,7 +114,7 @@ export default {
             // 节点ID的顺序集合
             nodeIdOrderList: [],
 
-						getFormList:[],
+            getFormList: []
         };
     },
     methods: {
@@ -866,6 +872,7 @@ export default {
                             }
                         }
                     } else {
+                        debugger;
                         this.showConditionSelect = false;
                         this.conditionValues = '';