!490 【代码优化】嵌套循环,item命名重复

Merge pull request !490 from 最后的梦想/N/A
pull/493/head
芋道源码 2024-08-08 00:51:31 +00:00 committed by Gitee
commit 270f41428f
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 4 additions and 4 deletions

View File

@ -47,10 +47,10 @@
<el-form-item label="抄送人" prop="copyUserIds">
<el-select v-model="auditForms[index].copyUserIds" multiple placeholder="请选择抄送人">
<el-option
v-for="item in userOptions"
:key="item.id"
:label="item.nickname"
:value="item.id"
v-for="itemx in userOptions"
:key="itemx.id"
:label="itemx.nickname"
:value="itemx.id"
/>
</el-select>
</el-form-item>