Unverified 提交 6981bdee 作者: fxjhello 提交者: GitHub

Merge pull request #653 from 1729457433/dev-1

fix:前端知识库获取失败. 修改获取及删除接口至knowledge_base
......@@ -24,6 +24,15 @@ export const getfilelist = (knowledge_base_id: any) => {
})
}
export const getkblist = (knowledge_base_id: any) => {
return api({
url: '/local_doc_qa/list_knowledge_base',
method: 'get',
params: {},
})
}
export const bing_search = (params: any) => {
return api({
url: '/local_doc_qa/bing_search_chat',
......@@ -39,6 +48,13 @@ export const deletefile = (params: any) => {
data: JSON.stringify(params),
})
}
export const deletekb = (params: any) => {
return api({
url: '/local_doc_qa/delete_knowledge_base',
method: 'post',
data: JSON.stringify(params),
})
}
export const web_url = () => {
return window.location.origin
}
......
......@@ -3,7 +3,7 @@ import { NButton, NForm, NFormItem, NInput, NPopconfirm } from 'naive-ui'
import { onMounted, ref } from 'vue'
import filelist from './filelist.vue'
import { SvgIcon } from '@/components/common'
import { deletefile, getfilelist } from '@/api/chat'
import { getkblist, deletekb} from '@/api/chat'
import { idStore } from '@/store/modules/knowledgebaseid/id'
const items = ref<any>([])
const choice = ref('')
......@@ -11,7 +11,7 @@ const store = idStore()
onMounted(async () => {
choice.value = store.knowledgeid
const res = await getfilelist({})
const res = await getkblist({})
res.data.data.forEach((item: any) => {
items.value.push({
value: item,
......@@ -52,8 +52,8 @@ const handleClick = () => {
}
}
async function handleDelete(item: any) {
await deletefile(item.value)
const res = await getfilelist({})
await deletekb(item.value)
const res = await getkblist({})
items.value = []
res.data.data.forEach((item: any) => {
items.value.push({
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论