fix: description
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run

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',
loading: 'Loading',
noMore: 'No more! ',
noDesc: ' No description',
selectParagraph: {
title: 'Select Segments',
error: 'Process only the failed segments',

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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