fix: description

This commit is contained in:
wangdan-fit2cloud 2025-07-15 19:22:26 +08:00
parent 902a97c0f8
commit c1a403b583
7 changed files with 14 additions and 12 deletions

View File

@ -4,6 +4,7 @@ export default {
noData: 'No Data', noData: 'No Data',
loading: 'Loading', loading: 'Loading',
noMore: 'No more! ', noMore: 'No more! ',
noDesc: ' No description',
selectParagraph: { selectParagraph: {
title: 'Select Segments', title: 'Select Segments',
error: 'Process only the failed segments', error: 'Process only the failed segments',

View File

@ -9,6 +9,7 @@ export default {
error: '仅执行未成功分段', error: '仅执行未成功分段',
all: '全部分段', all: '全部分段',
}, },
noDesc: '暂无描述',
folder: { folder: {
addFolder: '添加文件夹', addFolder: '添加文件夹',
addChildFolder: '添加子文件夹', addChildFolder: '添加子文件夹',

View File

@ -4,6 +4,7 @@ export default {
noData: '無匹配数据', noData: '無匹配数据',
loading: '加載中', loading: '加載中',
noMore: '到底啦!', noMore: '到底啦!',
noDesc: '暂无描述',
selectParagraph: { selectParagraph: {
title: '選擇分段', title: '選擇分段',
error: '僅執行未成功分段', error: '僅執行未成功分段',

View File

@ -20,11 +20,9 @@
</el-text> </el-text>
</div> </div>
<div class="flex align-center mr-8"> <el-button link class="mr-24" @click="refresh">
<el-button link class="mr-16" @click="refresh"> <el-icon :size="18"><Refresh /></el-icon>
<el-icon class="mr-4" :size="18"><Refresh /></el-icon> </el-button>
</el-button>
</div>
</div> </div>
</template> </template>
<LayoutContainer class="application-manage"> <LayoutContainer class="application-manage">
@ -252,7 +250,7 @@ defineExpose({ open })
} }
.el-dialog__headerbtn { .el-dialog__headerbtn {
top: 6px; top: 3px;
right: 6px; right: 6px;
} }
} }

View File

@ -153,7 +153,7 @@
> >
<CardBox <CardBox
:title="item.name" :title="item.name"
:description="item.desc || $t('common.noData')" :description="item.desc || $t('components.noDesc')"
class="cursor" class="cursor"
@click="clickFolder(item)" @click="clickFolder(item)"
> >

View File

@ -158,7 +158,7 @@
> >
<CardBox <CardBox
:title="item.name" :title="item.name"
:description="item.desc || $t('common.noData')" :description="item.desc || $t('components.noDesc')"
class="cursor" class="cursor"
@click="clickFolder(item)" @click="clickFolder(item)"
> >

View File

@ -106,7 +106,7 @@
<div <div
v-loading.fullscreen.lock="paginationConfig.current_page === 1 && loading" v-loading.fullscreen.lock="paginationConfig.current_page === 1 && loading"
style="max-height: calc(100vh - 120px)" style="max-height: calc(100vh - 120px)"
> >
<InfiniteScroll <InfiniteScroll
:size="tool.toolList.length" :size="tool.toolList.length"
@ -129,7 +129,7 @@
> >
<CardBox <CardBox
:title="item.name" :title="item.name"
:description="item.desc || $t('common.noData')" :description="item.desc || $t('components.noDesc')"
class="cursor" class="cursor"
@click="clickFolder(item)" @click="clickFolder(item)"
> >
@ -238,7 +238,9 @@
{{ $t('common.copy') }} {{ $t('common.copy') }}
</el-dropdown-item> </el-dropdown-item>
<el-dropdown-item <el-dropdown-item
v-if="item.init_field_list?.length > 0 && permissionPrecise.edit(item.id)" v-if="
item.init_field_list?.length > 0 && permissionPrecise.edit(item.id)
"
@click.stop="configInitParams(item)" @click.stop="configInitParams(item)"
> >
<AppIcon iconName="app-operation" class="mr-4"></AppIcon> <AppIcon iconName="app-operation" class="mr-4"></AppIcon>
@ -566,7 +568,6 @@ function importTool(file: any) {
}) })
.then(() => { .then(() => {
getList() getList()
}) })
.catch((e: any) => { .catch((e: any) => {
if (e.code === 400) { if (e.code === 400) {