From c2d73d36f018bbbe2393357f32b548113b09d3ae Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 13 二月 2025 21:28:08 +0800 Subject: [PATCH] 流程日志组件、转办的用户、部门查询使用无数据权限的 --- src/views/flowable/task/myProcess/send/index.vue | 63 +++++++------------------------ 1 files changed, 15 insertions(+), 48 deletions(-) diff --git a/src/views/flowable/task/myProcess/send/index.vue b/src/views/flowable/task/myProcess/send/index.vue index c24832c..31dfc65 100644 --- a/src/views/flowable/task/myProcess/send/index.vue +++ b/src/views/flowable/task/myProcess/send/index.vue @@ -189,6 +189,7 @@ props: {}, data() { return { + jumpDesc: '', // 璺宠繃璇存槑 rejectLoading: false, // 椹冲洖鎸夐挳鍔犺浇 submitLoading: false, // 鎻愪氦鎸夐挳鍔犺浇 delegationButLoading: false, // 杞姙鎸夐挳鍔犺浇 @@ -276,21 +277,29 @@ methods: { // 璺宠繃浠诲姟 jumpTask() { - this.$confirm('纭畾瑕佽烦杩囨浠诲姟鍚�?', '鎻愮ず', { + this.$prompt('澶囨敞璇存槑', '纭畾瑕佽烦杩囨浠诲姟鍚�', { confirmButtonText: '纭畾', cancelButtonText: '鍙栨秷', - type: 'warning' - }).then(() => { + 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 + 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); @@ -568,10 +577,10 @@ cancelButtonText: '鍙栨秷', type: 'warning' }).then(() => { - this.submitLoading = true let that = this if (eval("that.$refs.form" +0)) { eval("that.$refs.form" +0)[0].getFormData().then(formData => { + this.submitLoading = true this.formData = formData const param = { formJson: this.formJson, @@ -593,48 +602,6 @@ this.goBack(); }) } - - // let that = this - // eval("that.$refs.form" +0)[0].getFormData().then(formData => { - // // 鏍规嵁褰撳墠浠诲姟鎴栬�呮祦绋嬭璁¢厤缃殑涓嬩竴姝ヨ妭鐐� todo 鏆傛椂鏈秹鍙婂埌鑰冭檻缃戝叧銆佽〃杈惧紡鍜屽鑺傜偣鎯呭喌 - // getNextFlowNodeByStart({deploymentId: this.deployId, variables: formData}).then(res => { - // const data = res.data; - // if (data) { - // this.formData = formData; - // if (data.dataType === 'dynamic') { - // if (data.type === 'assignee') { // 鎸囧畾浜哄憳 - // this.checkSendUser = true; - // this.checkType = "single"; - // } else if (data.type === 'candidateUsers') { // 鍊欓�変汉鍛�(澶氫釜) - // this.checkSendUser = true; - // this.checkType = "multiple"; - // } else if (data.type === 'candidateGroups') { // 鎸囧畾缁�(鎵�灞炶鑹叉帴鏀朵换鍔�) - // this.checkSendRole = true; - // } else { // 浼氱 - // // 娴佺▼璁捐鎸囧畾鐨� elementVariable 浣滀负浼氱浜哄憳鍒楄〃 - // this.multiInstanceVars = data.vars; - // this.checkSendUser = true; - // this.checkType = "multiple"; - // } - // this.taskOpen = true; - // this.taskTitle = "閫夋嫨浠诲姟鎺ユ敹"; - // } else { - // if (this.procDefId) { - // const param = { - // formJson: this.formJson, - // } - // // 澶嶅埗瀵硅薄鐨勫睘鎬у�肩粰鏂扮殑瀵硅薄 - // Object.assign(param, formData); - // // 瀹屾垚浠诲姟 - // completeSubmitFormTask(this.taskId, param).then(res => { - // this.$modal.msgSuccess(res.msg); - // this.goBack(); - // }) - // } - // } - // } - // }) - // }) }).catch((err) => { console.log(err) this.$message({ -- Gitblit v1.8.0