update 调整办理人

This commit is contained in:
gssong 2024-11-16 01:24:11 +08:00
parent 160762b1b3
commit 0533115671
2 changed files with 6 additions and 6 deletions

View File

@ -48,9 +48,9 @@
<el-table-column align="center" label="办理人">
<template #default="scope">
<template v-if="tab === 'waiting'">
<template v-if="scope.row.userDTOList && scope.row.userDTOList.length > 0">
<el-tag v-for="(item, index) in scope.row.userDTOList" :key="index" type="success">
{{ item.nickName }}
<template v-if="scope.row.transactorNames">
<el-tag v-for="(name, index) in scope.row.transactorNames.split(',')" :key="index" type="success">
{{ name }}
</el-tag>
</template>
<template v-else>

View File

@ -36,9 +36,9 @@
<el-table-column align="center" prop="nodeName" label="任务名称"></el-table-column>
<el-table-column align="center" label="办理人">
<template #default="scope">
<template v-if="scope.row.userDTOList && scope.row.userDTOList.length > 0">
<el-tag v-for="(item, index) in scope.row.userDTOList" :key="index" type="success">
{{ item.nickName }}
<template v-if="scope.row.transactorNames">
<el-tag v-for="(name, index) in scope.row.transactorNames.split(',')" :key="index" type="success">
{{ name }}
</el-tag>
</template>
<template v-else>