|
...
|
...
|
@@ -8,9 +8,7 @@ |
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
|
<template #overlay>
|
|
|
|
<a-menu>
|
|
|
|
<a-menu-item key="1" @click="batchHandleDelete">
|
|
|
|
<Icon icon="ant-design:delete-outlined" />删除
|
|
|
|
</a-menu-item>
|
|
|
|
<a-menu-item key="1" @click="batchHandleDelete"> <Icon icon="ant-design:delete-outlined" />删除 </a-menu-item>
|
|
|
|
</a-menu>
|
|
|
|
</template>
|
|
|
|
<a-button>批量操作<Icon icon="mdi:chevron-down" /></a-button>
|
|
...
|
...
|
@@ -26,92 +24,90 @@ |
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, reactive } from 'vue';
|
|
|
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
|
|
|
import { useModal } from '/@/components/Modal';
|
|
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
|
|
import QuestionEmbeddingModal from './components/QuestionEmbeddingModal.vue';
|
|
|
|
import { columns, searchFormSchema, superQuerySchema } from './QuestionEmbedding.data';
|
|
|
|
import { list, deleteOne, batchDelete, getImportZipUrl, getExportUrl } from './QuestionEmbedding.api';
|
|
|
|
import { reactive } from 'vue';
|
|
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
|
|
|
import { useModal } from '/@/components/Modal';
|
|
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
|
|
import QuestionEmbeddingModal from './components/QuestionEmbeddingModal.vue';
|
|
|
|
import { columns, searchFormSchema, superQuerySchema } from './QuestionEmbedding.data';
|
|
|
|
import { list, deleteOne, batchDelete, getImportZipUrl, getExportUrl } from './QuestionEmbedding.api';
|
|
|
|
|
|
|
|
const queryParam = reactive<any>({});
|
|
|
|
const [registerModal, { openModal }] = useModal();
|
|
|
|
const queryParam = reactive<any>({});
|
|
|
|
const [registerModal, { openModal }] = useModal();
|
|
|
|
|
|
|
|
const { tableContext, onExportXls, onImportXls } = useListPage({
|
|
|
|
tableProps: {
|
|
|
|
title: '问答向量库',
|
|
|
|
api: list,
|
|
|
|
columns,
|
|
|
|
formConfig: {
|
|
|
|
schemas: searchFormSchema,
|
|
|
|
autoSubmitOnEnter: true,
|
|
|
|
showAdvancedButton: true
|
|
|
|
const { tableContext, onExportXls, onImportXls } = useListPage({
|
|
|
|
tableProps: {
|
|
|
|
title: '问答向量库',
|
|
|
|
api: list,
|
|
|
|
columns,
|
|
|
|
formConfig: {
|
|
|
|
schemas: searchFormSchema,
|
|
|
|
autoSubmitOnEnter: true,
|
|
|
|
showAdvancedButton: true,
|
|
|
|
},
|
|
|
|
actionColumn: {
|
|
|
|
width: 120,
|
|
|
|
fixed: 'right',
|
|
|
|
},
|
|
|
|
beforeFetch: (params) => Object.assign(params, queryParam),
|
|
|
|
},
|
|
|
|
actionColumn: {
|
|
|
|
width: 120,
|
|
|
|
fixed: 'right'
|
|
|
|
exportConfig: {
|
|
|
|
name: '问答向量库',
|
|
|
|
url: getExportUrl,
|
|
|
|
},
|
|
|
|
beforeFetch: (params) => Object.assign(params, queryParam)
|
|
|
|
},
|
|
|
|
exportConfig: {
|
|
|
|
name: '问答向量库',
|
|
|
|
url: getExportUrl
|
|
|
|
},
|
|
|
|
importConfig: {
|
|
|
|
url: getImportZipUrl,
|
|
|
|
success: handleSuccess
|
|
|
|
}
|
|
|
|
});
|
|
|
|
importConfig: {
|
|
|
|
url: getImportZipUrl,
|
|
|
|
success: handleSuccess,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
|
|
|
|
const superQueryConfig = reactive(superQuerySchema);
|
|
|
|
const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
|
|
|
|
const superQueryConfig = reactive(superQuerySchema);
|
|
|
|
|
|
|
|
function handleSuperQuery(params) {
|
|
|
|
Object.assign(queryParam, params);
|
|
|
|
reload();
|
|
|
|
}
|
|
|
|
function handleSuperQuery(params) {
|
|
|
|
Object.assign(queryParam, params);
|
|
|
|
reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleAdd() {
|
|
|
|
openModal(true, { isUpdate: false, showFooter: true });
|
|
|
|
}
|
|
|
|
function handleAdd() {
|
|
|
|
openModal(true, { isUpdate: false, showFooter: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleEdit(record) {
|
|
|
|
openModal(true, { record, isUpdate: true, showFooter: true });
|
|
|
|
}
|
|
|
|
function handleEdit(record) {
|
|
|
|
openModal(true, { record, isUpdate: true, showFooter: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleDetail(record) {
|
|
|
|
openModal(true, { record, isUpdate: true, showFooter: false });
|
|
|
|
}
|
|
|
|
function handleDetail(record) {
|
|
|
|
openModal(true, { record, isUpdate: true, showFooter: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleDelete(record) {
|
|
|
|
await deleteOne({ id: record.id }, handleSuccess);
|
|
|
|
}
|
|
|
|
async function handleDelete(record) {
|
|
|
|
await deleteOne({ id: record.id }, handleSuccess);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function batchHandleDelete() {
|
|
|
|
await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
|
|
|
|
}
|
|
|
|
async function batchHandleDelete() {
|
|
|
|
await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleSuccess() {
|
|
|
|
selectedRowKeys.value = [];
|
|
|
|
reload();
|
|
|
|
}
|
|
|
|
function handleSuccess() {
|
|
|
|
selectedRowKeys.value = [];
|
|
|
|
reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTableAction(record) {
|
|
|
|
return [
|
|
|
|
{ label: '编辑', onClick: handleEdit.bind(null, record) }
|
|
|
|
];
|
|
|
|
}
|
|
|
|
function getTableAction(record) {
|
|
|
|
return [{ label: '编辑', onClick: handleEdit.bind(null, record) }];
|
|
|
|
}
|
|
|
|
|
|
|
|
function getDropDownAction(record) {
|
|
|
|
return [
|
|
|
|
{ label: '详情', onClick: handleDetail.bind(null, record) },
|
|
|
|
{
|
|
|
|
label: '删除',
|
|
|
|
popConfirm: {
|
|
|
|
title: '确认删除此问答?',
|
|
|
|
confirm: handleDelete.bind(null, record)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
function getDropDownAction(record) {
|
|
|
|
return [
|
|
|
|
{ label: '详情', onClick: handleDetail.bind(null, record) },
|
|
|
|
{
|
|
|
|
label: '删除',
|
|
|
|
popConfirm: {
|
|
|
|
title: '确认删除此问答?',
|
|
|
|
confirm: handleDelete.bind(null, record),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
</script> |
...
|
...
|
|