469 lines
16 KiB
Vue
469 lines
16 KiB
Vue
|
|
<template>
|
||
|
|
<PageWrapper dense fixedHeight contentFullHeight contentClass="flex">
|
||
|
|
<BasicTable @register="registerTable" ref="tableRef" :row-selection="{ selectedRowKeys: selectedKeys, onChange: onSelectChange }" @row-dbClick="dbClickRow">
|
||
|
|
|
||
|
|
<template #toolbar>
|
||
|
|
<template v-for="button in tableButtonConfig" :key="button.code">
|
||
|
|
<a-button v-if="button.isDefault" :type="button.type" @click="buttonClick(button.code)">
|
||
|
|
<template #icon><Icon :icon="button.icon" /></template>
|
||
|
|
{{ button.name }}
|
||
|
|
</a-button>
|
||
|
|
<a-button v-else :type="button.type">
|
||
|
|
<template #icon><Icon :icon="button.icon" /></template>
|
||
|
|
{{ button.name }}
|
||
|
|
</a-button>
|
||
|
|
</template>
|
||
|
|
</template>
|
||
|
|
<template #bodyCell="{ column, record }">
|
||
|
|
<template v-if="column.dataIndex === 'action'">
|
||
|
|
<TableAction :actions="getActions(record)" />
|
||
|
|
</template>
|
||
|
|
</template>
|
||
|
|
</BasicTable>
|
||
|
|
<PrintPreview
|
||
|
|
v-if="printData.visible"
|
||
|
|
:id="printData.id"
|
||
|
|
:request-params-configs="printData.requestParamsConfigs"
|
||
|
|
:request-body-configs="printData.requestBodyConfigs"
|
||
|
|
:request-header-configs="printData.requestHeaderConfigs"
|
||
|
|
@close="printData.visible = false"
|
||
|
|
/>
|
||
|
|
<Testfrom3Modal @register="registerModal" @success="handleSuccess" />
|
||
|
|
<ImportModal @register="registerImportModal" importUrl="/system/testfrom3/import" @success="handleImportSuccess"/>
|
||
|
|
|
||
|
|
</PageWrapper>
|
||
|
|
</template>
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { ref, computed, onMounted, onUnmounted, createVNode,
|
||
|
|
reactive
|
||
|
|
} from 'vue';
|
||
|
|
|
||
|
|
import { Modal } from 'ant-design-vue';
|
||
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
||
|
|
import { BasicTable, useTable, TableAction, ActionItem } from '/@/components/Table';
|
||
|
|
import { getTestfrom3Page, deleteTestfrom3, exportTestfrom3} from '/@/api/system/Testfrom3';
|
||
|
|
import { PageWrapper } from '/@/components/Page';
|
||
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||
|
|
import { useI18n } from '/@/hooks/web/useI18n';
|
||
|
|
import { usePermission } from '/@/hooks/web/usePermission';
|
||
|
|
import { useFormConfig } from '/@/hooks/web/useFormConfig';
|
||
|
|
import { useRouter } from 'vue-router';
|
||
|
|
import { getTestfrom3 } from '/@/api/system/Testfrom3';
|
||
|
|
import {generateTableJson } from '/@/utils/event/design';
|
||
|
|
import printJS from 'print-js';
|
||
|
|
|
||
|
|
import { getPrintConfigInfo } from '/@/api/system/generator/print';
|
||
|
|
import PrintPreview from '/@/views/generator/print/Preview.vue';
|
||
|
|
import { PrintButton } from '/@/enums/printEnum';
|
||
|
|
import { InputParamItem } from '/@/components/ApiConfig/src/interface';
|
||
|
|
import { useModal } from '/@/components/Modal';
|
||
|
|
import Testfrom3Modal from './components/Testfrom3Modal.vue';
|
||
|
|
import { ImportModal } from '/@/components/Import';
|
||
|
|
import { downloadByData } from '/@/utils/file/download';
|
||
|
|
import {formConfig, searchFormSchema, columns } from './components/config';
|
||
|
|
import Icon from '/@/components/Icon/index';
|
||
|
|
import useEventBus from '/@/hooks/event/useEventBus';
|
||
|
|
import { cloneDeep } from 'lodash-es';
|
||
|
|
|
||
|
|
const { bus, CREATE_FLOW, FLOW_PROCESSED, FORM_LIST_MODIFIED } = useEventBus();
|
||
|
|
|
||
|
|
const { notification } = useMessage();
|
||
|
|
const { t } = useI18n();
|
||
|
|
defineEmits(['register']);
|
||
|
|
const { filterColumnAuth, filterButtonAuth } = usePermission();
|
||
|
|
const { mergeColumns,mergeSearchFormSchema,mergeButtons } = useFormConfig();
|
||
|
|
|
||
|
|
const filterColumns = cloneDeep(filterColumnAuth(columns));
|
||
|
|
const customConfigColums =ref(filterColumns);
|
||
|
|
const customSearchFormSchema =ref(searchFormSchema);
|
||
|
|
|
||
|
|
const tableRef = ref();
|
||
|
|
//所有按钮
|
||
|
|
const buttons = ref([{"isUse":true,"name":"新增","code":"add","icon":"ant-design:plus-outlined","isDefault":true,"type":"primary"},{"isUse":true,"name":"编辑","code":"edit","icon":"ant-design:form-outlined","isDefault":true},{"isUse":true,"name":"刷新","code":"refresh","icon":"ant-design:reload-outlined","isDefault":true},{"isUse":true,"name":"查看","code":"view","icon":"ant-design:eye-outlined","isDefault":true},{"isUse":true,"name":"快速导入","code":"import","icon":"ant-design:import-outlined","isDefault":true},{"isUse":true,"name":"快速导出","code":"export","icon":"ant-design:export-outlined","isDefault":true},{"isUse":true,"name":"打印","code":"print","icon":"ant-design:printer-outlined","isDefault":true},{"isUse":true,"name":"模板打印","code":"templateprint","icon":"ant-design:printer-outlined","isDefault":true},{"isUse":true,"name":"删除","code":"delete","icon":"ant-design:delete-outlined","isDefault":true}]);
|
||
|
|
//展示在列表内的按钮
|
||
|
|
const actionButtons = ref<string[]>(['view', 'edit', 'copyData', 'delete', 'startwork','flowRecord']);
|
||
|
|
const buttonConfigs = computed(()=>{
|
||
|
|
return filterButtonAuth(buttons.value);
|
||
|
|
})
|
||
|
|
|
||
|
|
const tableButtonConfig = computed(() => {
|
||
|
|
return buttonConfigs.value?.filter((x) => !actionButtons.value.includes(x.code));
|
||
|
|
});
|
||
|
|
|
||
|
|
const actionButtonConfig = computed(() => {
|
||
|
|
return buttonConfigs.value?.filter((x) => actionButtons.value.includes(x.code));
|
||
|
|
});
|
||
|
|
|
||
|
|
const btnEvent = {add : handleAdd,edit : handleEdit,refresh : handleRefresh,view : handleView,import : handleImport,export : handleExport,print : handlePrint,templateprint : handleTemplateprint,delete : handleDelete,}
|
||
|
|
|
||
|
|
const { currentRoute } = useRouter();
|
||
|
|
const router = useRouter();
|
||
|
|
const printMenuId = computed(() => currentRoute.value.meta.menuId as string);
|
||
|
|
|
||
|
|
const formIdComputedRef = ref();
|
||
|
|
formIdComputedRef.value = currentRoute.value.meta.formId
|
||
|
|
const schemaIdComputedRef = ref();
|
||
|
|
schemaIdComputedRef.value = currentRoute.value.meta.schemaId
|
||
|
|
const selectedKeys = ref<string[]>([]);
|
||
|
|
const selectedRowsData = ref<any[]>([]);
|
||
|
|
|
||
|
|
const [registerModal, { openModal }] = useModal();
|
||
|
|
const [registerImportModal, { openModal: openImportModal }] = useModal();
|
||
|
|
|
||
|
|
// 模板打印 入参参数
|
||
|
|
let printData: {
|
||
|
|
visible:boolean;
|
||
|
|
id: string;
|
||
|
|
code:string;
|
||
|
|
requestParamsConfigs: Array<InputParamItem>;
|
||
|
|
requestHeaderConfigs: Array<InputParamItem>;
|
||
|
|
requestBodyConfigs: Array<InputParamItem>;
|
||
|
|
|
||
|
|
} = reactive({
|
||
|
|
visible:false,
|
||
|
|
id: '',
|
||
|
|
code:'',
|
||
|
|
requestParamsConfigs: [],
|
||
|
|
requestHeaderConfigs: [],
|
||
|
|
requestBodyConfigs: [],
|
||
|
|
});
|
||
|
|
|
||
|
|
const formName='测试_极简模式';
|
||
|
|
const [registerTable, { reload, getRawDataSource, }] = useTable({
|
||
|
|
title: '' || (formName + '列表'),
|
||
|
|
api: getTestfrom3Page,
|
||
|
|
rowKey: 'id',
|
||
|
|
columns: customConfigColums,
|
||
|
|
formConfig: {
|
||
|
|
rowProps: {
|
||
|
|
gutter: 16,
|
||
|
|
},
|
||
|
|
schemas: customSearchFormSchema,
|
||
|
|
fieldMapToTime: [],
|
||
|
|
showResetButton: false,
|
||
|
|
},
|
||
|
|
beforeFetch: (params) => {
|
||
|
|
return { ...params, FormId: formIdComputedRef.value, PK: 'id' };
|
||
|
|
},
|
||
|
|
afterFetch: (res) => {
|
||
|
|
tableRef.value.setToolBarWidth();
|
||
|
|
|
||
|
|
},
|
||
|
|
useSearchForm: true,
|
||
|
|
showTableSetting: true,
|
||
|
|
|
||
|
|
striped: false,
|
||
|
|
actionColumn: {
|
||
|
|
width: 160,
|
||
|
|
title: '操作',
|
||
|
|
dataIndex: 'action',
|
||
|
|
slots: { customRender: 'action' },
|
||
|
|
},
|
||
|
|
tableSetting: {
|
||
|
|
size: false,
|
||
|
|
setting: false,
|
||
|
|
},
|
||
|
|
customRow,
|
||
|
|
});
|
||
|
|
|
||
|
|
function dbClickRow(record) {
|
||
|
|
if (!actionButtonConfig?.value.some(element => element.code == 'view')) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
const { processId, taskIds, schemaId } = record.workflowData || {};
|
||
|
|
if (taskIds && taskIds.length) {
|
||
|
|
router.push({
|
||
|
|
path: '/flow/' + schemaId + '/' + (processId || '') + '/approveFlow',
|
||
|
|
query: {
|
||
|
|
taskId: taskIds[0],
|
||
|
|
formName: formName,
|
||
|
|
formId:currentRoute.value.meta.formId
|
||
|
|
}
|
||
|
|
});
|
||
|
|
} else if (schemaId && !taskIds && processId) {
|
||
|
|
router.push({
|
||
|
|
path: '/flow/' + schemaId + '/' + processId + '/approveFlow',
|
||
|
|
query: {
|
||
|
|
readonly: 1,
|
||
|
|
taskId: '',
|
||
|
|
formName: formName,
|
||
|
|
formId:currentRoute.value.meta.formId
|
||
|
|
}
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
router.push({
|
||
|
|
path: '/form/Testfrom3/' + record.id + '/viewForm',
|
||
|
|
query: {
|
||
|
|
formPath: 'system/Testfrom3',
|
||
|
|
formName: formName,
|
||
|
|
formId:currentRoute.value.meta.formId
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function buttonClick(code) {
|
||
|
|
if (code.includes(PrintButton.CODE)) {
|
||
|
|
printData.code = code;
|
||
|
|
}
|
||
|
|
btnEvent[code]();
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleAdd() {
|
||
|
|
if (schemaIdComputedRef.value) {
|
||
|
|
router.push({
|
||
|
|
path: '/flow/' + schemaIdComputedRef.value + '/0/createFlow'
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
router.push({
|
||
|
|
path: '/form/Testfrom3/0/createForm',
|
||
|
|
query: {
|
||
|
|
formPath: 'system/Testfrom3',
|
||
|
|
formName: formName,
|
||
|
|
formId:currentRoute.value.meta.formId
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleEdit(record: Recordable) {
|
||
|
|
|
||
|
|
router.push({
|
||
|
|
path: '/form/Testfrom3/' + record.id + '/updateForm',
|
||
|
|
query: {
|
||
|
|
formPath: 'system/Testfrom3',
|
||
|
|
formName: formName,
|
||
|
|
formId:currentRoute.value.meta.formId
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
function handleDelete(record: Recordable) {
|
||
|
|
deleteList([record.id]);
|
||
|
|
}
|
||
|
|
|
||
|
|
function deleteList(ids) {
|
||
|
|
Modal.confirm({
|
||
|
|
title: '提示信息',
|
||
|
|
icon: createVNode(ExclamationCircleOutlined),
|
||
|
|
content: '是否确认删除?',
|
||
|
|
okText: '确认',
|
||
|
|
cancelText: '取消',
|
||
|
|
onOk() {
|
||
|
|
deleteTestfrom3(ids).then((_) => {
|
||
|
|
handleSuccess();
|
||
|
|
notification.success({
|
||
|
|
message: 'Tip',
|
||
|
|
description: t('删除成功!'),
|
||
|
|
});
|
||
|
|
});
|
||
|
|
},
|
||
|
|
onCancel() {},
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
async function handlePrint() {
|
||
|
|
const dataSource = Array.isArray(getRawDataSource())
|
||
|
|
? getRawDataSource()
|
||
|
|
: getRawDataSource().list;
|
||
|
|
const json = generateTableJson(filterColumns, dataSource);
|
||
|
|
const properties = filterColumns.map((item) => item.title);
|
||
|
|
printJS({
|
||
|
|
printable: json,
|
||
|
|
properties: properties,
|
||
|
|
type: 'json',
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
// 模板打印
|
||
|
|
async function handleTemplateprint() {
|
||
|
|
if (!selectedKeys.value.length) {
|
||
|
|
notification.warning({
|
||
|
|
message: t('提示'),
|
||
|
|
description: t('请选择数据'),
|
||
|
|
});
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
if (selectedKeys.value.length > 1) {
|
||
|
|
notification.warning({
|
||
|
|
message: t('提示'),
|
||
|
|
description: t('只能选择一条数据进行操作'),
|
||
|
|
});
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
let id = selectedKeys.value[0];
|
||
|
|
try {
|
||
|
|
const record = await getTestfrom3(id);
|
||
|
|
let res = await getPrintConfigInfo(printData.code, printMenuId.value);
|
||
|
|
if(res.enabledMark==null){
|
||
|
|
notification.warning({
|
||
|
|
message: t('提示'),
|
||
|
|
description: t('当前功能未绑定打印模板,请绑定后再进行模板打印。'),
|
||
|
|
});
|
||
|
|
return ;
|
||
|
|
}
|
||
|
|
if(res.enabledMark==0){
|
||
|
|
notification.warning({
|
||
|
|
message: t('提示'),
|
||
|
|
description: t('找不到打印模板,请联系管理员。'),
|
||
|
|
});
|
||
|
|
return ;
|
||
|
|
}
|
||
|
|
printData.id = res.schemaId;
|
||
|
|
if (res.apiConfig) {
|
||
|
|
let json = JSON.parse(res.apiConfig);
|
||
|
|
if (json.requestParamsConfigs && json.requestParamsConfigs.length > 0) {
|
||
|
|
printData.requestParamsConfigs = json.requestParamsConfigs.map((ele) => {
|
||
|
|
if (ele.config && record[ele.config] != undefined) {
|
||
|
|
ele.value = record[ele.config];
|
||
|
|
}
|
||
|
|
return ele;
|
||
|
|
});
|
||
|
|
}
|
||
|
|
if (json.requestHeaderConfigs && json.requestHeaderConfigs.length > 0) {
|
||
|
|
printData.requestHeaderConfigs = json.requestHeaderConfigs.map((ele) => {
|
||
|
|
if (ele.config && record[ele.config] != undefined) {
|
||
|
|
ele.value = record[ele.config];
|
||
|
|
}
|
||
|
|
return ele;
|
||
|
|
});
|
||
|
|
}
|
||
|
|
if (json.requestBodyConfigs && json.requestBodyConfigs.length > 0) {
|
||
|
|
printData.requestBodyConfigs = json.requestBodyConfigs.map((ele) => {
|
||
|
|
if (ele.config && record[ele.config] != undefined) {
|
||
|
|
ele.value = record[ele.config];
|
||
|
|
}
|
||
|
|
return ele;
|
||
|
|
});
|
||
|
|
}
|
||
|
|
printData.visible = true;
|
||
|
|
}else{
|
||
|
|
notification.warning({
|
||
|
|
message: t('提示'),
|
||
|
|
description: t('当前功能未绑定打印模板,请绑定后再进行模板打印。'),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
} catch (error) {}
|
||
|
|
}
|
||
|
|
function onSelectChange(selectedRowKeys: [], selectedRows) {
|
||
|
|
selectedKeys.value = selectedRowKeys;
|
||
|
|
selectedRowsData.value = selectedRows;
|
||
|
|
}
|
||
|
|
|
||
|
|
function customRow(record: Recordable) {
|
||
|
|
return {
|
||
|
|
onClick: () => {
|
||
|
|
let selectedRowKeys = [...selectedKeys.value];
|
||
|
|
if (selectedRowKeys.indexOf(record.id) >= 0) {
|
||
|
|
let index = selectedRowKeys.indexOf(record.id);
|
||
|
|
selectedRowKeys.splice(index, 1);
|
||
|
|
} else {
|
||
|
|
selectedRowKeys.push(record.id);
|
||
|
|
}
|
||
|
|
selectedKeys.value = selectedRowKeys;
|
||
|
|
},
|
||
|
|
};
|
||
|
|
}
|
||
|
|
function handleRefresh() {
|
||
|
|
reload();
|
||
|
|
}
|
||
|
|
function handleSuccess() {
|
||
|
|
|
||
|
|
selectedKeys.value = [];
|
||
|
|
selectedRowsData.value = [];
|
||
|
|
reload();
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleView(record: Recordable) {
|
||
|
|
|
||
|
|
dbClickRow(record);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
async function handleExport() {
|
||
|
|
const res = await exportTestfrom3({ isTemplate: false });
|
||
|
|
downloadByData(
|
||
|
|
res.data,
|
||
|
|
'Testfrom3.xlsx',
|
||
|
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleImport() {
|
||
|
|
openImportModal(true, {
|
||
|
|
title: '快速导入',
|
||
|
|
downLoadUrl:'/system/testfrom3/export',
|
||
|
|
});
|
||
|
|
}
|
||
|
|
function handleImportSuccess(){
|
||
|
|
reload()
|
||
|
|
}
|
||
|
|
onMounted(() => {
|
||
|
|
|
||
|
|
if (schemaIdComputedRef.value) {
|
||
|
|
bus.on(FLOW_PROCESSED, handleRefresh);
|
||
|
|
bus.on(CREATE_FLOW, handleRefresh);
|
||
|
|
} else {
|
||
|
|
bus.on(FORM_LIST_MODIFIED, handleRefresh);
|
||
|
|
}
|
||
|
|
|
||
|
|
// 合并渲染覆盖配置中的列表配置,包括展示字段配置、搜索字段配置、按钮配置
|
||
|
|
mergeCustomListRenderConfig();
|
||
|
|
});
|
||
|
|
onUnmounted(() => {
|
||
|
|
if (schemaIdComputedRef.value) {
|
||
|
|
bus.off(FLOW_PROCESSED, handleRefresh);
|
||
|
|
bus.off(CREATE_FLOW, handleRefresh);
|
||
|
|
} else {
|
||
|
|
bus.off(FORM_LIST_MODIFIED, handleRefresh);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
function getActions(record: Recordable):ActionItem[] {
|
||
|
|
|
||
|
|
const actionsList: ActionItem[] = actionButtonConfig.value?.map((button) => {
|
||
|
|
if (!record.workflowData?.processId) {
|
||
|
|
return {
|
||
|
|
icon: button?.icon,
|
||
|
|
tooltip: button?.name,
|
||
|
|
color: button.code === 'delete' ? 'error' : undefined,
|
||
|
|
onClick: btnEvent[button.code].bind(null, record),
|
||
|
|
};
|
||
|
|
} else {
|
||
|
|
if (button.code === 'view') {
|
||
|
|
return {
|
||
|
|
icon: button?.icon,
|
||
|
|
tooltip: button?.name,
|
||
|
|
onClick: btnEvent[button.code].bind(null, record),
|
||
|
|
};
|
||
|
|
} else {
|
||
|
|
return {};
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|
||
|
|
return actionsList;
|
||
|
|
}
|
||
|
|
async function mergeCustomListRenderConfig(){
|
||
|
|
if (formConfig.useCustomConfig) {
|
||
|
|
let formId=currentRoute.value.meta.formId;
|
||
|
|
//1.合并展示字段配置
|
||
|
|
let cols= await mergeColumns(customConfigColums.value,formId);
|
||
|
|
customConfigColums.value=cols;
|
||
|
|
//2.合并搜索字段配置
|
||
|
|
let sFormSchema= await mergeSearchFormSchema(customSearchFormSchema.value,formId);
|
||
|
|
customSearchFormSchema.value=sFormSchema;
|
||
|
|
//3.合并按钮配置
|
||
|
|
let btns= await mergeButtons(buttons.value,formId);
|
||
|
|
buttons.value=btns;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
<style lang="less" scoped>
|
||
|
|
:deep(.ant-table-selection-col) {
|
||
|
|
width: 50px;
|
||
|
|
}
|
||
|
|
.show{
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
.hide{
|
||
|
|
display: none !important;
|
||
|
|
}
|
||
|
|
</style>
|