From 15085d16f2c29070c731f8271e87cbedceb1319f Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 12 二月 2025 16:19:36 +0800
Subject: [PATCH] 流程表单提交按钮 提交失败转圈问题

---
 src/views/flowable/task/myProcess/send/index.vue |   45 +++++++++++++++++++++++++++++++++++++++------
 1 files changed, 39 insertions(+), 6 deletions(-)

diff --git a/src/views/flowable/task/myProcess/send/index.vue b/src/views/flowable/task/myProcess/send/index.vue
index ac1ecaa..702f003 100644
--- a/src/views/flowable/task/myProcess/send/index.vue
+++ b/src/views/flowable/task/myProcess/send/index.vue
@@ -19,8 +19,8 @@
                     <el-button size="small" type="primary" :disabled="submitLoading" v-loading="submitLoading" @click="submitForm">纭骞舵彁浜�</el-button>
                     <el-button size="small" type="primary" disabled @click="submitForm">鍗忓悓鍔炵悊(鍔熻兘寮�鍙戜腑)</el-button>
                     <el-button size="small" type="primary" @click="openDelegation(formDataList[0].beforeNodeName)">杞姙</el-button>
-                    <el-button v-if="formDataObj.canJump" size="small" type="primary" @click="openDelegation()">璺宠繃</el-button>
-                    <el-button v-if="formDataObj.canWait" size="small" type="primary" @click="openDelegation()">瀹圭己</el-button>
+                    <el-button v-if="formDataObj.canJump" size="small" type="primary" @click="jumpTask()">璺宠繃</el-button>
+                    <el-button v-if="formDataObj.canWait" size="small" type="primary" >瀹圭己</el-button>
                   </div>
                   <div class="current">褰撳墠闃舵锛�<span>{{formDataObj.beforeNodeName}}</span></div>
                 </div>
@@ -175,7 +175,7 @@
 import { flowTaskForm } from "@/api/flowable/todo";
 import {getNextFlowNodeByStart} from "@/api/flowable/todo";
 import {rejectTask} from "@/api/flowable/process";
-import {taskDelegation} from "@/api/projectProcess/projectProcess";
+import {taskDelegation, taskJump} from "@/api/projectProcess/projectProcess";
 
 export default {
   name: "Record",
@@ -189,6 +189,7 @@
   props: {},
   data() {
     return {
+      jumpDesc: '', // 璺宠繃璇存槑
       rejectLoading: false, // 椹冲洖鎸夐挳鍔犺浇
       submitLoading: false, // 鎻愪氦鎸夐挳鍔犺浇
       delegationButLoading: false, // 杞姙鎸夐挳鍔犺浇
@@ -274,6 +275,32 @@
     this.getFlowFormData(this.taskId);
   },
   methods: {
+    // 璺宠繃浠诲姟
+    jumpTask() {
+      this.$prompt('澶囨敞璇存槑', '纭畾瑕佽烦杩囨浠诲姟鍚�', {
+        confirmButtonText: '纭畾',
+        cancelButtonText: '鍙栨秷',
+        inputType: 'textarea'
+        // inputPattern: /[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?/,
+        // inputErrorMessage: '閭鏍煎紡涓嶆纭�'
+      }).then(({ value }) => {
+        let jumpForm = {
+          taskId: this.taskId,
+          projectId: this.goBackParams.projectId,
+          processInsId: this.procInsId,
+          desc: value
+        }
+        taskJump(jumpForm).then(res => {
+          this.$message.success("鎿嶄綔鎴愬姛")
+          this.goBack()
+        })
+      }).catch(() => {
+        this.$message({
+          type: 'info',
+          message: '宸插彇娑堣烦杩囨搷浣�'
+        });
+      });
+    },
     removeDept(dept) {
       let index = this.delegationDeptSelect.indexOf(dept);
       if (index !== -1) {
@@ -565,15 +592,21 @@
               this.$modal.msgSuccess(res.msg);
               this.submitLoading = false
               this.goBack();
-            })
-          })
+            }).catch((err) => {
+              this.submitLoading = false;
+            });
+          }).catch((err) => {
+            this.submitLoading = false;
+          });
         } else {
           // 娌″叧鑱旇〃鍗曠洿鎺ヤ紶绌�
           completeSubmitFormTask(this.taskId, {}).then(res => {
             this.$modal.msgSuccess(res.msg);
             this.submitLoading = false
             this.goBack();
-          })
+          }).catch((err) => {
+            this.submitLoading = false;
+          });
         }
 
         // let that = this

--
Gitblit v1.8.0