mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
This commit is contained in:
parent
902a97c0f8
commit
c1a403b583
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ export default {
|
|||
error: '仅执行未成功分段',
|
||||
all: '全部分段',
|
||||
},
|
||||
noDesc: '暂无描述',
|
||||
folder: {
|
||||
addFolder: '添加文件夹',
|
||||
addChildFolder: '添加子文件夹',
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ export default {
|
|||
noData: '無匹配数据',
|
||||
loading: '加載中',
|
||||
noMore: '到底啦!',
|
||||
noDesc: '暂无描述',
|
||||
selectParagraph: {
|
||||
title: '選擇分段',
|
||||
error: '僅執行未成功分段',
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -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)"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue