From 8a04328fbba2139f399cb85ea9581adbe8d7e8c6 Mon Sep 17 00:00:00 2001 From: liudong <liudong> Date: 星期六, 27 七月 2024 22:43:45 +0800 Subject: [PATCH] 知识库页面接口调用开发 --- src/views/dmx/knowledgeLib/index.vue | 183 +++++++++++++++++++++++++++++++++------------ 1 files changed, 133 insertions(+), 50 deletions(-) diff --git a/src/views/dmx/knowledgeLib/index.vue b/src/views/dmx/knowledgeLib/index.vue index 7531a6f..07dba76 100644 --- a/src/views/dmx/knowledgeLib/index.vue +++ b/src/views/dmx/knowledgeLib/index.vue @@ -8,7 +8,7 @@ :placeholder="$t('cardList.searchInput.placeholder')" style="width: 130px;" /> - <addKnow></addKnow> + <addKnow @knowledgeData="knowledgeData"></addKnow> </div> <div class="lf-container-down"> <div class="tabs"> @@ -16,10 +16,19 @@ class="tab" v-for="(tab, index) in tabs" :key="index" - @click="selectTab(index)" + @click="selectTab(index,tab)" :class="{ 'active': selectedTab === index }" > - {{ tab }} + {{ tab.name }} + <a-popover position="bl"> + <icon-more :style="{position: 'absolute',top:'10px',right:'20px'}"/> + <template #content> + <a-popconfirm content="纭畾鍒犻櫎鍚�?" @ok="deleteKnowledge(tab.id)" type="warning"> + <span style="cursor: pointer;color: #0960bd;font-size: 12px"><icon-delete />鍒犻櫎</span> + </a-popconfirm> + + </template> + </a-popover> </div> </div> </div> @@ -154,25 +163,28 @@ <!-- </span>--> {{record.name}} </template> - <template #staue="{ record }"> - <a-switch :model-value="record.staue"/> + <template #create_time="{ record }"> + <span>{{parseTime(record.create_time)}}</span> </template> <template #status="{ record }"> + <a-switch v-model="record.status" checked-value="0" unchecked-value="1"/> + </template> + <template #run="{ record }"> <div style="display: flex;align-items: center;"> <div style="width: 100px"> - <a-popover title="Title"> + <a-popover title="Title" v-if="record.run == '2'"> <a-tag :color="'blue'" border>{{$t('dmx.list.complete')}}</a-tag> <template #content> <p>Here is the text content</p> </template> </a-popover> - <a-popover title="Title"> + <a-popover title="Title" v-if="record.run == '1'"> <a-tag :color="'gold'" border>{{$t('dmx.list.cancel')}}</a-tag> <template #content> <p>Here is the text content</p> </template> </a-popover> - <a-popover title="Title"> + <a-popover title="Title" v-if="record.run == '0'"> <a-tag :color="'green'" border>{{$t('dmx.list.NotStarted')}}</a-tag> <template #content> <p>Here is the text content</p> @@ -180,17 +192,17 @@ </a-popover> </div> <div> - <a-button type="text" size="large"> + <a-button type="text" size="large" v-if="record.run == '2'"> <template #icon> <icon-sync /> </template> </a-button> - <a-button type="text" size="large"> + <a-button type="text" size="large" v-if="record.run == '1'"> <template #icon> <icon-sync style="color: green" /> </template> </a-button> - <a-button type="text" size="large"> + <a-button type="text" size="large" v-if="record.run == '0'"> <template #icon> <icon-play-circle style="color: green" /> </template> @@ -198,11 +210,11 @@ </div> </div> </template> - <template #operations="{ record }" > + <template #action="{ record }" > <tool/> <edit/> - <a-popconfirm :content="t('dmx.list.EnsureDelete')" type="warning" @ok="deleteItem(record)"> - <a-button v-permission="['admin']" type="text" size="small"> + <a-popconfirm :content="t('纭畾鍒犻櫎鍚�')" type="warning" @ok="deleteItem(record)"> + <a-button type="text" size="small"> <template #icon> <icon-delete /> </template> @@ -271,10 +283,18 @@ </template> <script lang="ts" setup> - import { computed, ref, reactive, watch, nextTick } from 'vue'; +import { computed, ref, reactive, watch, nextTick, onBeforeMount } from "vue"; import { useI18n } from 'vue-i18n'; import useLoading from '@/hooks/loading'; - import { queryPolicyList, PolicyRecord, PolicyParams } from '@/api/list'; +import { + queryKbList, + PolicyRecord, + PolicyParams, + queryKbDocumentList, + deleteKnow, + queryKbdetail, + queryKbtenantInfo +} from "@/api/kbList"; import { Pagination } from '@/types/global'; import type { SelectOptionData } from '@arco-design/web-vue/es/select/interface'; import type { TableColumnData } from '@arco-design/web-vue/es/table/interface'; @@ -288,6 +308,8 @@ import tool from '@/views/dmx/knowledgeLib/tool.vue' import addDetails from '@/views/dmx/knowledgeLib/addDetails.vue' import { deleteAccount } from "@/api/account"; +import { Message } from "@arco-design/web-vue"; +import { parseTime } from "@/utils"; type SizeProps = 'mini' | 'small' | 'medium' | 'large'; type Column = TableColumnData & { checked?: true }; const account = ref(null) @@ -303,19 +325,25 @@ }; const { loading, setLoading } = useLoading(true); const { t } = useI18n(); - const renderData = ref<PolicyRecord[]>([]); + const renderData = ref([]); const formModel = ref(generateFormModel()); - const cloneColumns = ref<Column[]>([]); + const cloneColumns = ref([]); const showColumns = ref<Column[]>([]); const size = ref<SizeProps>('medium'); let visible = ref(false) let detailsShow = ref(false) let selectedTab = ref(0) - let tabs = reactive(['娉曞緥鐭ヨ瘑搴�', '鏀垮姟鐭ヨ瘑搴�', '鍖诲鐭ヨ瘑搴�', '鍏朵粬鐭ヨ瘑搴�']) + let tabs = ref([]) - const selectTab = (index) => { + const selectTab = (index,item) => { selectedTab.value= index; + console.log(item.id); + fetchData({ + kb_id: item.id, + page: 1, + page_size: 20 + }) } const basePagination: Pagination = { @@ -351,36 +379,36 @@ }, { title: t('鍒嗗揩鏁�'), - dataIndex: 'contentType', + dataIndex: 'chunk_num', }, { title: t('dmx.column.UploadTime'), - dataIndex: 'filterType', + dataIndex: 'create_time', + slotName: 'create_time', + width:200 }, { - title: t('dmx.column.Founder'), - dataIndex: 'count', + title: t('瑙f瀽鏂规硶'), + dataIndex: 'parser_id', + slotName: 'parser_id', }, { - title: t('dmx.column.Status'), - dataIndex: 'createdTime', - }, - { - title: t('dmx.column.Enable'), - dataIndex: 'staue', - slotName: 'staue', - }, - { - title: t('dmx.column.ParseState'), + title: t('鍚敤'), dataIndex: 'status', + slotName: 'status', slotName: 'status', }, { + title: t('瑙f瀽鐘舵��'), + dataIndex: 'run', + slotName: 'run', + }, + { title: t('dmx.column.Operate'), - dataIndex: 'operations', - slotName: 'operations', + dataIndex: 'action', + slotName: 'action', width: 150, - minWidth: 100, + minWidth: 150, }, ]); const contentTypeOptions = computed<SelectOptionData[]>(() => [ @@ -417,16 +445,26 @@ value: 'offline', }, ]); - const fetchData = async ( - params: PolicyParams = { current: 1, pageSize: 20 } - ) => { + const fetchData = async (params) => { setLoading(true); try { - const { data } = await queryPolicyList(params); - renderData.value = data.list; - console.log(renderData, 'renderData'); - pagination.current = params.current; - pagination.total = data.total; + const data = await queryKbDocumentList(params); + console.log(data, 'data'); + if(data.code=='0'){ + renderData.value = data.data.docs||[]; + pagination.current = params.page; + pagination.total = data.data.total; + // 鏌ヨ鐭ヨ瘑搴撹鎯� + const kbdetail = await queryKbdetail({ + kb_id:params.kb_id, + }); + // 璇︽儏 + // const kbtenantInfo = await queryKbtenantInfo(); + + + + + } } catch (err) { // you can report use errorHandler or other } finally { @@ -435,10 +473,11 @@ }; const search = () => { - fetchData({ - ...basePagination, - ...formModel.value, - } as unknown as PolicyParams); + alert(1) + // fetchData({ + // ...basePagination, + // ...formModel.value, + // }); }; const handleClick = ()=>{ @@ -449,7 +488,46 @@ fetchData({ ...basePagination, current }); }; - fetchData(); + const knowledgeData = async ( + params = { page: 1, page_size: 20 } + ) => { + setLoading(true); + try { + const { data } = await queryKbList(params); + console.log(data, 'data'); + tabs.value = data; + console.log(tabs.value, 'tabs'); + if(tabs.value.length>0 && tabs.value[0]){ + fetchData({ + kb_id: tabs.value[0].id, + page: 1, + page_size: 20 + }) + } + // renderData.value = data.list; + // console.log(renderData, 'renderData'); + // pagination.current = params.current; + // pagination.total = data.total; + } catch (err) { + // you can report use errorHandler or other + } finally { + setLoading(false); + } + }; + + const deleteKnowledge = async (id) => { + + + + + let data = await deleteKnow({ + kb_id:id + }) + if(data.code == 0){ + Message.success('鍒犻櫎鎴愬姛'); + knowledgeData() + } + } const reset = () => { formModel.value = generateFormModel(); }; @@ -540,6 +618,11 @@ }, { deep: true, immediate: true } ); + + onBeforeMount(()=>{ + knowledgeData() + }) + </script> <script lang="ts"> -- Gitblit v1.8.0