style: 字典管理 字典类型 表格选中行增加bold效果

This commit is contained in:
dap
2025-03-27 21:45:35 +08:00
parent e5fa32bbae
commit 456f0e1112
2 changed files with 15 additions and 0 deletions

View File

@@ -196,3 +196,14 @@ function handleDownloadExcel() {
<DictTypeModal @reload="tableApi.query()" />
</div>
</template>
<style lang="scss">
div#dict-type {
.vxe-body--row {
&.row--current {
// 选中行bold
@apply font-semibold;
}
}
}
</style>