Skip to content

Commit 10fc464

Browse files
perf: 优化应用、知识库列表显示个数
1 parent 93d40b4 commit 10fc464

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ui/src/views/application/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
:loading="loading"
3838
>
3939
<el-row :gutter="15">
40-
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb-16">
40+
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" class="mb-16">
4141
<CardAdd
4242
:title="$t('views.application.applicationList.card.createApplication')"
4343
@click="openCreateDialog"
@@ -48,7 +48,7 @@
4848
:sm="12"
4949
:md="8"
5050
:lg="6"
51-
:xl="4"
51+
:xl="6"
5252
v-for="(item, index) in applicationList"
5353
:key="index"
5454
class="mb-16"

ui/src/views/dataset/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737
:loading="loading"
3838
>
3939
<el-row :gutter="15">
40-
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb-16">
40+
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" class="mb-16">
4141
<CardAdd title="创建知识库" @click="openCreateDialog" />
4242
</el-col>
4343
<template v-for="(item, index) in datasetList" :key="index">
44-
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb-16">
44+
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" class="mb-16">
4545
<CardBox
4646
:title="item.name"
4747
:description="item.desc"

ui/src/views/function-lib/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
:loading="loading"
4242
>
4343
<el-row :gutter="15">
44-
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb-16">
44+
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" class="mb-16">
4545
<CardAdd title="创建函数" @click="openCreateDialog()" />
4646
</el-col>
4747
<el-col

0 commit comments

Comments
 (0)