Skip to content

Commit

Permalink
fix(系统设置): 字体管理-补充 搜索无结果状态
Browse files Browse the repository at this point in the history
  • Loading branch information
dataeaseShu authored and fit2cloud-chenyw committed Dec 25, 2024
1 parent 8cc604b commit 0a213ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ defineExpose({
<template #empty>
<empty-background
v-if="props.showEmptyImg"
:description="props.emptyDesc ? props.emptyDesc : '暂无数据'"
:description="props.emptyDesc ? props.emptyDesc : $t('data_set.no_data')"
:img-type="imgType || 'noneWhite'"
/>
</template>
Expand Down
5 changes: 4 additions & 1 deletion core/core-frontend/src/views/system/font/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ onMounted(() => {
</div>
</div>
<div class="font-content_overflow">
<div class="font-content_list">
<div class="font-content_list" v-if="fontListComputed.length">
<div class="font-content_item" v-for="ele in fontListComputed" :key="ele">
<span v-if="ele.isDefault" class="font-default">{{ t('system.default_font') }}</span>
<div class="font-name">
Expand Down Expand Up @@ -175,6 +175,9 @@ onMounted(() => {
</div>
</div>
</div>
<div style="height: 178px; margin-top: 142px" v-else>
<empty-background :description="$t('work_branch.relevant_content_found')" img-type="tree" />
</div>
</div>
</div>
<UploadDetail @finish="uploadFilish" ref="uploadDetail"></UploadDetail>
Expand Down

0 comments on commit 0a213ed

Please sign in to comment.