fix:前端知识库获取失败.
This commit is contained in:
parent
2a964f298c
commit
91c647812f
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Reference in New Issue