From 275e61fa5227fe62d82379f81121fd9c3652526f Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Tue, 23 Jan 2024 09:46:46 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BB=BB=E5=8A=A1=E8=BD=AC=E4=BA=A4?= =?UTF-8?q?=EF=BC=8C=E6=B5=81=E7=A8=8B=E4=BF=A1=E6=81=AF=E8=BD=AC=E4=BA=A4?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BC=A0=E5=8F=82id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/personalCenter/taskCareOf/table/ProcessInfo.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/personalCenter/taskCareOf/table/ProcessInfo.vue b/src/views/personalCenter/taskCareOf/table/ProcessInfo.vue index a2971c96..2551c20b 100644 --- a/src/views/personalCenter/taskCareOf/table/ProcessInfo.vue +++ b/src/views/personalCenter/taskCareOf/table/ProcessInfo.vue @@ -62,7 +62,7 @@ :can-drag="true" :scroll="{x: '100%', y: yScrollHeight}" ref="table" - :rowKey="(record) => {return record.taskId + ',' + (record.projectId || '')}" + :rowKey="(record) => {return record.taskId + ',' + (record.projectId || '') + ',' + record.id}" :columns="columns" :dataSource="dataSource" :pagination="ipagination" @@ -160,7 +160,7 @@ export default { if (row.state) { return @@ -186,6 +186,7 @@ export default { param.taskId = fieldName.split(',')[0] param.transferUser = value param.projectId = fieldName.split(',')[1] || '' + param.id = fieldName.split(',')[2] || '' processInfoTransfer(param).then(res => { if (res.success) { this.$message.success(res.message) @@ -217,6 +218,7 @@ export default { param.taskId = item.split(',')[0] param.transferUser = value param.projectId = item.split(',')[1] || '' + param.id = item.split(',')[2] || '' params.push(param) } processInfoBatchTransfer(params).then(res => {