Skip to content

Commit

Permalink
🐛 Fixing a bug. #I8XBS3 数据字典中,编辑和删除这两个按钮的国际化不起作用
Browse files Browse the repository at this point in the history
  • Loading branch information
lbw committed Jan 19, 2024
1 parent d04fb28 commit a5a8c22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/admin/dict/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
<span class="code">{{ data.dictType }}</span>
<span class="do">
<el-button-group>
<el-button icon="el-icon-edit" size="small" @click.stop="dicDialogRef.openDialog(data.id)"></el-button>
<el-button icon="Edit" size="small" @click.stop="dicDialogRef.openDialog(data.id)"></el-button>
<el-tooltip :content="$t('sysdict.deleteDisabledTip')" :disabled="data.systemFlag === '0'" placement="top">
<span style="margin-left: 12px">
<el-button
:disabled="data.systemFlag !== '0'"
icon="el-icon-delete"
icon="Delete"
size="small"
@click.stop="handleDelete([data.id])"
></el-button>
Expand Down

0 comments on commit a5a8c22

Please sign in to comment.