fix(前端): 查询切换到知识库tab时,应该调用查询知识库列表接口而不是文件列表接口;删除文件改为使用DELETE方法,参数按api.py改动调整为QueryParam
This commit is contained in:
parent
2311fb007d
commit
7cbdc6702e
|
|
@ -16,6 +16,14 @@ export const chatfile = (params: any) => {
|
|||
})
|
||||
}
|
||||
|
||||
export const getKbsList = () => {
|
||||
return api({
|
||||
url: '/local_doc_qa/list_knowledge_base',
|
||||
method: 'get',
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
export const getfilelist = (knowledge_base_id: any) => {
|
||||
return api({
|
||||
url: '/local_doc_qa/list_files',
|
||||
|
|
@ -35,8 +43,8 @@ export const bing_search = (params: any) => {
|
|||
export const deletefile = (params: any) => {
|
||||
return api({
|
||||
url: '/local_doc_qa/delete_file',
|
||||
method: 'post',
|
||||
data: JSON.stringify(params),
|
||||
method: 'delete',
|
||||
params,
|
||||
})
|
||||
}
|
||||
export const web_url = () => {
|
||||
|
|
|
|||
|
|
@ -3,15 +3,16 @@ 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 { deletefile, getKbsList, getfilelist } from '@/api/chat'
|
||||
import { idStore } from '@/store/modules/knowledgebaseid/id'
|
||||
|
||||
const items = ref<any>([])
|
||||
const choice = ref('')
|
||||
const store = idStore()
|
||||
|
||||
onMounted(async () => {
|
||||
choice.value = store.knowledgeid
|
||||
const res = await getfilelist({})
|
||||
const res = await getKbsList()
|
||||
res.data.data.forEach((item: any) => {
|
||||
items.value.push({
|
||||
value: item,
|
||||
|
|
|
|||
Loading…
Reference in New Issue