UNIVPLMDataIntegration/Web/src/views/system/codeGen/component/genConfigDialog.vue

457 lines
13 KiB
Vue
Raw Normal View History

2024-06-15 13:02:35 +08:00
<template>
<div class="sys-codeGenConfig-container">
2024-10-31 19:01:59 +08:00
<vxe-modal v-model="state.isShowDialog" title="生成配置" :width="800" :height="350" show-footer show-zoom resize fullscreen @close="cancel">
<template #default>
<vxe-grid ref="xGrid" class="xGrid-table-style" v-bind="options">
<template #drag_default="{}">
<span class="drag-btn">
<i class="fa fa-arrows"></i>
</span>
</template>
<template #effectType="{ row, $index }">
<vxe-select v-model="row.effectType" class="m-2" style="width: 70%" placeholder="Select" transfer :disabled="judgeColumns(row)" @change="effectTypeChange(row, $index)" filterable>
<vxe-option v-for="item in state.effectTypeList" :key="item.code" :label="item.value" :value="item.code" />
</vxe-select>
<vxe-button v-if="row.effectType === 'ApiTreeSelect' || row.effectType === 'fk'" style="width: 30%" icon="vxe-icon-edit" @click="effectTypeChange(row, $index)">修改</vxe-button>
</template>
<template #columnComment="{ row }">
<vxe-input v-model="row.columnComment" autocomplete="off" />
</template>
<template #dictType="{ row }">
<vxe-select v-model="row.dictTypeCode" class="m-2" :disabled="effectTypeEnable(row)" filterable transfer>
<vxe-option v-for="item in state.dictTypeCodeList" :key="item.code" :label="item.name" :value="item.code" />
</vxe-select>
</template>
<template #whetherTable="{ row }">
<vxe-checkbox v-model="row.whetherTable"></vxe-checkbox>
</template>
<template #whetherAddUpdate="{ row }">
<vxe-checkbox v-model="row.whetherAddUpdate" :disabled="judgeColumns(row)"></vxe-checkbox>
</template>
<template #whetherSortable="{ row }">
<vxe-checkbox v-model="row.whetherSortable"></vxe-checkbox>
</template>
<template #whetherRequired="{ row }">
<vxe-tag v-if="row.whetherRequired" status="success"></vxe-tag>
<vxe-tag v-else status="info"></vxe-tag>
</template>
<template #queryWhether="{ row }">
<vxe-switch readonly v-model="row.queryWhether" open-label="是" close-label="否" :openValue="true" :closeValue="false"></vxe-switch>
</template>
<template #queryType="{ row }">
<vxe-select v-model="row.queryType" class="m-2" placeholder="Select" :disabled="!row.queryWhether" filterable transfer>
<vxe-option v-for="item in state.queryTypeList" :key="item.code" :label="item.value" :value="item.code" />
</vxe-select>
</template>
<template #verification="{ row }">
<vxe-button status="primary" plain v-if="row.columnKey === 'False' && !row.whetherCommon" @click="openVerifyDialog(row)">校验规则{{ row.ruleCount }}</vxe-button>
<span v-else></span>
</template>
</vxe-grid>
2024-06-15 13:02:35 +08:00
</template>
2024-10-31 19:01:59 +08:00
<template #footer>
<vxe-button @click="cancel"> </vxe-button>
<vxe-button status="primary" @click="submit"> </vxe-button>
2024-06-15 13:02:35 +08:00
</template>
2024-10-31 19:01:59 +08:00
</vxe-modal>
<fkDialog ref="fkDialogRef" @submitRefreshFk="submitRefreshFk" />
<treeDialog ref="treeDialogRef" @submitRefreshFk="submitRefreshFk" />
<verifyDialog ref="verifyDialogRef" @submitVerify="submitVerifyOk" />
2024-06-15 13:02:35 +08:00
</div>
2024-10-31 19:01:59 +08:00
</template>
<script lang="ts" setup name="sysCodeGenConfig">
import { nextTick, onMounted, onUnmounted, reactive, ref } from 'vue';
import mittBus from '/@/utils/mitt';
import Sortable from 'sortablejs';
import { VxeGridInstance, VxeGridProps } from 'vxe-pc-ui';
import fkDialog from '/@/views/system/codeGen/component/fkDialog.vue';
import treeDialog from '/@/views/system/codeGen/component/treeDialog.vue';
import verifyDialog from '/@/views/system/codeGen/component/verifyDialog.vue';
import { getAPI } from '/@/utils/axios-utils';
import { SysCodeGenConfigApi, SysConstApi, SysDictDataApi, SysDictTypeApi, SysEnumApi } from '/@/api-services/api';
// import { CodeGenConfig } from '/@/api-services/models/code-gen-config';
const xGrid = ref<VxeGridInstance<any>>();
const emits = defineEmits(['handleQuery']);
const fkDialogRef = ref();
const treeDialogRef = ref();
const verifyDialogRef = ref();
const state = reactive({
2024-06-15 13:02:35 +08:00
isShowDialog: false,
loading: false,
dbData: [] as any,
effectTypeList: [] as any,
dictTypeCodeList: [] as any,
dictDataAll: [] as any,
queryTypeList: [] as any,
allConstSelector: [] as any,
allEnumSelector: [] as any,
sortable: undefined as any,
2024-10-31 19:01:59 +08:00
});
// 表格参数配置
const options = reactive<VxeGridProps>({
id: 'genConfigDialog',
height: 'auto',
keepSource: true,
autoResize: true,
loading: false,
align: 'center',
rowConfig: { useKey: true },
seqConfig: { seqMethod: ({ row }) => row.orderNo },
columns: [
2024-10-31 19:01:59 +08:00
{
width: 50,
slots: {
default: 'drag_default',
},
},
{
field: 'orderNo',
title: '排序',
minWidth: 80,
showOverflow: 'tooltip',
},
{
field: 'columnName',
title: '字段',
minWidth: 160,
showOverflow: 'tooltip',
},
{
field: 'columnComment',
title: '描述',
minWidth: 120,
showOverflow: 'tooltip',
slots: {
edit: 'columnComment',
default: 'columnComment',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'netType',
title: '数据类型',
minWidth: 90,
},
2024-10-31 19:01:59 +08:00
{
field: 'effectType',
title: '作用类型',
minWidth: 160,
slots: {
edit: 'effectType',
default: 'effectType',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'dictTypeCode',
title: '字典',
minWidth: 180,
slots: {
edit: 'dictType',
default: 'dictType',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'whetherTable',
title: '列表显示',
minWidth: 70,
slots: {
edit: 'whetherTable',
default: 'whetherTable',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'whetherAddUpdate',
title: '增改',
minWidth: 70,
slots: {
edit: 'whetherAddUpdate',
default: 'whetherAddUpdate',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'whetherRequired',
title: '必填',
minWidth: 70,
slots: {
edit: 'whetherRequired',
default: 'whetherRequired',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'whetherSortable',
title: '可排序',
minWidth: 70,
slots: {
edit: 'whetherSortable',
default: 'whetherSortable',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'queryWhether',
title: '是否是查询',
minWidth: 70,
slots: {
edit: 'queryWhether',
default: 'queryWhether',
},
},
2024-10-31 19:01:59 +08:00
{
field: 'queryType',
title: '查询方式',
minWidth: 120,
slots: {
edit: 'queryType',
default: 'queryType',
},
},
2024-10-31 19:01:59 +08:00
{
title: '校验规则',
width: 130,
showOverflow: true,
slots: {
edit: 'verification',
default: 'verification',
},
},
],
editConfig: { trigger: 'click', mode: 'row', showStatus: true },
2024-10-31 19:01:59 +08:00
});
const rowDrop = () => {
const el = document.querySelector('.xGrid-table-style .vxe-table--body tbody') as HTMLElement;
state.sortable = Sortable.create(el, {
2024-10-31 19:01:59 +08:00
animation: 300,
handle: '.drag-btn',
onEnd: (sortableEvent: any) => {
const fullData = xGrid.value?.getTableData().fullData || [];
const newIndex = sortableEvent.newIndex as number;
const oldIndex = sortableEvent.oldIndex as number;
// 往前移动
if (oldIndex > newIndex) {
const moveRow = fullData?.find((e) => e.orderNo == oldIndex + 1);
for (let i = oldIndex; i > newIndex; i--) {
const row = fullData?.find((e) => e.orderNo == i);
if (row) {
row.orderNo += 1;
}
}
moveRow.orderNo = newIndex + 1;
} else {
// 往后移动
const moveRow = fullData?.find((e) => e.orderNo == oldIndex + 1);
for (let i = oldIndex; i < newIndex; i++) {
const row = fullData?.find((e) => e.orderNo == i + 2);
if (row) {
row.orderNo -= 1;
}
}
moveRow.orderNo = newIndex + 1;
}
2024-10-31 19:01:59 +08:00
// 更新表格数据
xGrid.value?.updateData();
},
});
2024-10-31 19:01:59 +08:00
};
// 页面初始化
onMounted(async () => {
// 从后端获取字典列表数据,并保存到本地状态管理中
2024-06-15 13:02:35 +08:00
var res = await getAPI(SysDictDataApi).apiSysDictDataDataListCodeGet('code_gen_effect_type');
state.effectTypeList = res.data.result;
2024-10-31 19:01:59 +08:00
// 获取字典类型代码列表,并将其保存到本地状态管理中,同时更新字典数据全集
2024-06-15 13:02:35 +08:00
var res1 = await getAPI(SysDictTypeApi).apiSysDictTypeListGet();
state.dictTypeCodeList = res1.data.result;
state.dictDataAll = res1.data.result;
2024-10-31 19:01:59 +08:00
// 获取查询类型列表数据,并保存到本地状态管理中
2024-06-15 13:02:35 +08:00
var res2 = await getAPI(SysDictDataApi).apiSysDictDataDataListCodeGet('code_gen_query_type');
state.queryTypeList = res2.data.result;
2024-10-31 19:01:59 +08:00
// 从后端获取常量列表数据,并保存到本地状态管理中
2024-06-15 13:02:35 +08:00
var res3 = await getAPI(SysConstApi).apiSysConstListGet();
state.allConstSelector = res3.data.result;
2024-10-31 19:01:59 +08:00
// 获取枚举类型列表数据,对其进行处理后保存到本地状态管理中
2024-06-15 13:02:35 +08:00
let resEnum = await getAPI(SysEnumApi).apiSysEnumEnumTypeListGet();
state.allEnumSelector = resEnum.data.result?.map((item) => ({ ...item, name: `${item.typeDescribe} [${item.typeName?.replace('Enum', '')}]`, code: item.typeName }));
2024-10-31 19:01:59 +08:00
2024-06-15 13:02:35 +08:00
mittBus.on('submitRefreshFk', (data: any) => {
2024-10-31 19:01:59 +08:00
let tableData = xGrid.value?.getData() || [];
tableData[data.index] = data;
xGrid.value?.loadData(tableData);
2024-06-15 13:02:35 +08:00
});
2024-10-31 19:01:59 +08:00
});
// 更新主键
const submitRefreshFk = (data: any) => {
let tableData = xGrid.value?.getData() || [];
tableData[data.index] = data;
xGrid.value?.reloadData(tableData);
2024-10-31 19:01:59 +08:00
};
// 页面初始化
onUnmounted(() => {
// mittBus.off('submitRefresh', () => {});
2024-10-31 19:01:59 +08:00
mittBus.off('submitRefreshFk', () => {});
});
// 控件类型改变
const effectTypeChange = (data: any, index: number) => {
2024-06-15 13:02:35 +08:00
let value = data.effectType;
if (value === 'fk') {
2024-10-31 19:01:59 +08:00
openFkDialog(data, index);
2024-06-15 13:02:35 +08:00
} else if (value === 'ApiTreeSelect') {
2024-10-31 19:01:59 +08:00
openTreeDialog(data, index);
2024-06-15 13:02:35 +08:00
} else if (value === 'Select') {
2024-10-31 19:01:59 +08:00
data.dictTypeCode = '';
state.dictTypeCodeList = state.dictDataAll;
2024-06-15 13:02:35 +08:00
} else if (value === 'ConstSelector') {
2024-10-31 19:01:59 +08:00
data.dictTypeCode = '';
state.dictTypeCodeList = state.allConstSelector;
2024-06-15 13:02:35 +08:00
} else if (value == 'EnumSelector') {
2024-10-31 19:01:59 +08:00
data.dictTypeCode = '';
state.dictTypeCodeList = state.allEnumSelector;
2024-06-15 13:02:35 +08:00
}
2024-10-31 19:01:59 +08:00
};
// 查询操作
const handleQuery = async (row: any) => {
2024-06-15 13:02:35 +08:00
state.loading = true;
var res = await getAPI(SysCodeGenConfigApi).apiSysCodeGenConfigListGet(undefined, row.id);
var data = res.data.result ?? [];
let lstWhetherColumn = ['whetherTable', 'whetherAddUpdate', 'whetherRequired', 'whetherSortable']; //列表显示的checkbox
data.forEach((item: any) => {
2024-10-31 19:01:59 +08:00
for (const key in item) {
if (item[key] === 'Y') {
item[key] = true;
}
if (item[key] === 'N' || (lstWhetherColumn.includes(key) && item[key] === null)) {
item[key] = false;
}
2024-08-28 11:37:37 +08:00
}
2024-10-31 19:01:59 +08:00
// 验证规则相关
let rules = new Array();
if (item.rules != '' && item.rules !== null) {
rules = JSON.parse(item.rules);
2024-06-15 13:02:35 +08:00
}
2024-10-31 19:01:59 +08:00
item.ruleCount = rules.length > 0 ? `${rules.length}` : '';
2024-06-15 13:02:35 +08:00
});
xGrid.value?.loadData(data);
2024-06-15 13:02:35 +08:00
state.loading = false;
2024-10-31 19:01:59 +08:00
};
// 判断是否(用于是否能选择或输入等)
function judgeColumns(data: any) {
2024-06-15 13:02:35 +08:00
return data.whetherCommon == true || data.columnKey === 'True';
2024-10-31 19:01:59 +08:00
}
function effectTypeEnable(data: any) {
2024-06-15 13:02:35 +08:00
var lst = ['Radio', 'Select', 'Checkbox', 'ConstSelector', 'EnumSelector'];
return lst.indexOf(data.effectType) === -1;
2024-10-31 19:01:59 +08:00
}
// 打开弹窗
const openDialog = async (addRow: any) => {
2024-06-15 13:02:35 +08:00
state.isShowDialog = true;
2024-10-31 19:01:59 +08:00
nextTick(async () => {
2024-10-31 19:01:59 +08:00
await handleQuery(addRow);
rowDrop();
});
2024-10-31 19:01:59 +08:00
};
// 打开外键弹窗
const openFkDialog = (addRow: any, index: number) => {
2024-06-15 13:02:35 +08:00
addRow.index = index;
fkDialogRef.value.openDialog(addRow);
2024-10-31 19:01:59 +08:00
};
const openTreeDialog = (addRow: any, index: number) => {
2024-06-15 13:02:35 +08:00
addRow.index = index;
treeDialogRef.value.openDialog(addRow);
2024-10-31 19:01:59 +08:00
};
// 打开校验弹窗
const openVerifyDialog = (row: any) => {
// handleQuery(addRow);
// state.isShowDialog = true;
verifyDialogRef.value.openDialog(row);
2024-10-31 19:01:59 +08:00
};
// 验证提交回调
const submitVerifyOk = (data: any) => {
let tableData = xGrid.value?.getData() || [];
for (let i = 0; i < tableData.length; i++) {
2024-10-31 19:01:59 +08:00
if (tableData[i].id == data.id) {
tableData[i].rules = data.rules;
tableData[i].ruleCount = data.ruleCount;
// 更新必填项
let rules = new Array();
if (data.rules != '' && data.rules !== null) {
rules = JSON.parse(data.rules);
let requiredRule = rules.find((t) => t.type === 'required');
if (requiredRule) {
tableData[i].whetherRequired = true;
} else {
tableData[i].whetherRequired = false;
}
}
break;
}
}
xGrid.value?.reloadData(tableData);
2024-10-31 19:01:59 +08:00
};
// 关闭弹窗
const closeDialog = () => {
2024-06-15 13:02:35 +08:00
emits('handleQuery');
cancel();
2024-10-31 19:01:59 +08:00
};
// 取消
const cancel = () => {
xGrid.value?.loadData([]);
2024-06-15 13:02:35 +08:00
state.isShowDialog = false;
if (state.sortable) {
2024-10-31 19:01:59 +08:00
state.sortable.destroy();
}
2024-10-31 19:01:59 +08:00
};
// 提交
const submit = async () => {
2024-06-15 13:02:35 +08:00
state.loading = true;
let lst = xGrid.value?.getData() || [];
2024-08-28 11:37:37 +08:00
let ignoreFields = ['remoteVerify', 'anyRule', 'columnKey'];
lst.forEach((item: any) => {
2024-10-31 19:01:59 +08:00
// 必填那一项转换
for (var key in item) {
if (item[key] === true && !ignoreFields.includes(key)) {
item[key] = 'Y';
}
if (item[key] === false && !ignoreFields.includes(key)) {
item[key] = 'N';
}
2024-06-15 13:02:35 +08:00
}
});
await getAPI(SysCodeGenConfigApi).apiSysCodeGenConfigUpdatePost(lst);
state.loading = false;
closeDialog();
2024-10-31 19:01:59 +08:00
};
// 导出对象
defineExpose({ openDialog });
</script>
<style lang="scss" scoped>
.xGrid-table-style .drag-btn {
cursor: move;
font-size: 20px;
2024-10-31 19:01:59 +08:00
}
</style>