update 调整办理人

This commit is contained in:
gssong 2024-12-15 01:38:38 +08:00
parent 000c8458ea
commit bad095d204
2 changed files with 6 additions and 6 deletions

View File

@ -59,8 +59,8 @@
<el-table-column align="center" label="办理人">
<template #default="scope">
<template v-if="tab === 'waiting'">
<template v-if="scope.row.transactorNames">
<el-tag v-for="(name, index) in scope.row.transactorNames.split(',')" :key="index" type="success">
<template v-if="scope.row.assigneeNames">
<el-tag v-for="(name, index) in scope.row.assigneeNames.split(',')" :key="index" type="success">
{{ name }}
</el-tag>
</template>

View File

@ -42,8 +42,8 @@
<el-table-column align="center" prop="createByName" label="申请人"></el-table-column>
<el-table-column align="center" label="办理人">
<template #default="scope">
<template v-if="scope.row.transactorNames">
<el-tag v-for="(name, index) in scope.row.transactorNames.split(',')" :key="index" type="success">
<template v-if="scope.row.assigneeNames">
<el-tag v-for="(name, index) in scope.row.assigneeNames.split(',')" :key="index" type="success">
{{ name }}
</el-tag>
</template>