170 lines
5.5 KiB
Vue
170 lines
5.5 KiB
Vue
<template>
|
|
<div class="dataset-list-container p-24" style="padding-top: 16px">
|
|
<div class="flex-between mb-16">
|
|
<h3>知识库</h3>
|
|
<el-input
|
|
v-model="searchValue"
|
|
@change="searchHandle"
|
|
placeholder="按 名称 搜索"
|
|
prefix-icon="Search"
|
|
class="w-240"
|
|
/>
|
|
</div>
|
|
<div v-loading.fullscreen.lock="paginationConfig.current_page === 1 && loading">
|
|
<InfiniteScroll
|
|
:size="datasetList.length"
|
|
:total="paginationConfig.total"
|
|
:page_size="paginationConfig.page_size"
|
|
v-model:current_page="paginationConfig.current_page"
|
|
@load="getList"
|
|
:loading="loading"
|
|
>
|
|
<el-row :gutter="15">
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb-16">
|
|
<CardAdd title="创建知识库" @click="router.push({ path: '/dataset/create' })" />
|
|
</el-col>
|
|
<template v-for="(item, index) in datasetList" :key="index">
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb-16">
|
|
<CardBox
|
|
:title="item.name"
|
|
:description="item.desc"
|
|
class="cursor"
|
|
@click="router.push({ path: `/dataset/${item.id}/document` })"
|
|
>
|
|
<div class="delete-button">
|
|
<el-tag v-if="item.type === '0'">通用型</el-tag>
|
|
<el-tag v-else-if="item.type === '1'" type="warning">Web 站点</el-tag>
|
|
</div>
|
|
|
|
<template #footer>
|
|
<div class="footer-content flex-between">
|
|
<div>
|
|
<span class="bold">{{ item?.document_count || 0 }}</span>
|
|
文档<el-divider direction="vertical" />
|
|
<span class="bold">{{ numberFormat(item?.char_length) || 0 }}</span>
|
|
字符<el-divider direction="vertical" />
|
|
<span class="bold">{{ item?.application_mapping_count || 0 }}</span>
|
|
关联应用
|
|
</div>
|
|
<div @click.stop>
|
|
<el-dropdown trigger="click">
|
|
<span class="el-dropdown-link cursor">
|
|
<el-icon><MoreFilled /></el-icon>
|
|
</span>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item
|
|
icon="Refresh"
|
|
@click.stop="syncDataset(item)"
|
|
v-if="item.type === '1'"
|
|
>同步</el-dropdown-item
|
|
>
|
|
<el-dropdown-item
|
|
icon="Setting"
|
|
@click.stop="router.push({ path: `/dataset/${item.id}/setting` })"
|
|
>设置</el-dropdown-item
|
|
>
|
|
<el-dropdown-item icon="Delete" @click.stop="deleteDateset(item)"
|
|
>删除</el-dropdown-item
|
|
>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</CardBox>
|
|
</el-col>
|
|
</template>
|
|
</el-row>
|
|
</InfiniteScroll>
|
|
</div>
|
|
<SyncWebDialog ref="SyncWebDialogRef" @refresh="refresh" />
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref, onMounted, reactive, computed } from 'vue'
|
|
import SyncWebDialog from '@/views/dataset/component/SyncWebDialog.vue'
|
|
import datasetApi from '@/api/dataset'
|
|
import { MsgSuccess, MsgConfirm } from '@/utils/message'
|
|
import { useRouter } from 'vue-router'
|
|
import { numberFormat } from '@/utils/utils'
|
|
const router = useRouter()
|
|
|
|
const SyncWebDialogRef = ref()
|
|
const loading = ref(false)
|
|
const datasetList = ref<any[]>([])
|
|
const paginationConfig = reactive({
|
|
current_page: 1,
|
|
page_size: 20,
|
|
total: 0
|
|
})
|
|
|
|
const searchValue = ref('')
|
|
|
|
function refresh(row: any) {
|
|
const index = datasetList.value.findIndex((v) => v.id === row.id)
|
|
datasetList.value.splice(index, 1, row)
|
|
}
|
|
|
|
function syncDataset(row: any) {
|
|
SyncWebDialogRef.value.open(row.id)
|
|
}
|
|
|
|
function searchHandle() {
|
|
paginationConfig.current_page = 1
|
|
datasetList.value = []
|
|
getList()
|
|
}
|
|
|
|
function deleteDateset(row: any) {
|
|
MsgConfirm(
|
|
`是否删除知识库:${row.name} ?`,
|
|
`此知识库关联 ${row.application_mapping_count} 个应用,删除后无法恢复,请谨慎操作。`,
|
|
{
|
|
confirmButtonText: '删除',
|
|
confirmButtonClass: 'danger'
|
|
}
|
|
)
|
|
.then(() => {
|
|
datasetApi.delDateset(row.id, loading).then(() => {
|
|
const index = datasetList.value.findIndex((v) => v.id === row.id)
|
|
datasetList.value.splice(index, 1)
|
|
MsgSuccess('删除成功')
|
|
})
|
|
})
|
|
.catch(() => {})
|
|
}
|
|
|
|
function getList() {
|
|
datasetApi
|
|
.getDateset(paginationConfig, searchValue.value && { name: searchValue.value }, loading)
|
|
.then((res) => {
|
|
paginationConfig.total = res.data.total
|
|
datasetList.value = [...datasetList.value, ...res.data.records]
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
getList()
|
|
})
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.dataset-list-container {
|
|
.delete-button {
|
|
position: absolute;
|
|
right: 12px;
|
|
top: 18px;
|
|
height: auto;
|
|
}
|
|
.footer-content {
|
|
.bold {
|
|
color: var(--app-text-color);
|
|
}
|
|
}
|
|
:deep(.el-divider__text) {
|
|
background: var(--app-layout-bg-color);
|
|
}
|
|
}
|
|
</style>
|