fix ui-admin warning

This commit is contained in:
supine-win
2022-05-20 21:40:11 +08:00
parent 24d46ad23a
commit d7b19327ab
6 changed files with 13 additions and 13 deletions

View File

@ -12,7 +12,7 @@
</el-table-column>
<el-table-column label="规则范围" align="center" prop="options" width="440px">
<template slot-scope="scope">
<el-tag size="medium" v-if="scope.row.options" v-for="option in scope.row.options">
<el-tag size="medium" v-if="scope.row.options" :key="option" v-for="option in scope.row.options">
{{ getAssignRuleOptionName(scope.row.type, option) }}
</el-tag>
</template>