From e7c988c6eeb5fe597c5e43e9a21c0feff9b31d2a Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 24 一月 2025 14:03:25 +0800
Subject: [PATCH] 文件上传表单增加允许的文件类型

---
 src/components/Process/panel/TaskConfPanel.vue |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/components/Process/panel/TaskConfPanel.vue b/src/components/Process/panel/TaskConfPanel.vue
index 88718ff..9d93362 100644
--- a/src/components/Process/panel/TaskConfPanel.vue
+++ b/src/components/Process/panel/TaskConfPanel.vue
@@ -242,12 +242,14 @@
     },
     editDept() {
       this.$nextTick(() => {
+        this.deptKey += '1'
         this.$refs.dept.setCheckList(this.delegationDeptSelect)
       })
       this.deptShow = true
     },
     editSingleUser() {
       if (this.delegationUserSelect && this.delegationUserSelect.length > 0) {
+        this.singleUserKey += '1'
         this.$nextTick(() => {
           this.$refs.singleUser.setChecked(this.delegationUserSelect[0])
         })
@@ -256,6 +258,7 @@
     },
     editRole() {
       if (this.delegationRoleSelect && this.delegationRoleSelect.length > 0) {
+        this.roleKey += '1'
         this.$nextTick(() => {
           this.$refs.role.setChecked(this.delegationRoleSelect)
         })

--
Gitblit v1.8.0