Files
nl-admin-view/apps/web-antd/src/views/code-generation/components/fileds.vue

216 lines
5.7 KiB
Vue
Raw Normal View History

2025-05-12 17:04:27 +08:00
<script lang="ts" setup>
2025-08-31 09:20:42 +08:00
import type { JsonViewerAction, JsonViewerValue } from '@vben/common-ui';
2025-05-13 16:34:31 +08:00
import { computed, ref } from 'vue';
2025-05-12 17:04:27 +08:00
2025-08-31 09:20:42 +08:00
import { JsonViewer, Page } from '@vben/common-ui';
2025-05-12 17:04:27 +08:00
2025-08-31 09:20:42 +08:00
import { Button, Input, message, Select, Switch, Table } from 'ant-design-vue';
2025-05-12 17:04:27 +08:00
2025-05-13 16:34:31 +08:00
import filedType from '#/util/json/filedType.json';
import formType from '#/util/json/formType.json';
2025-05-12 17:04:27 +08:00
interface RowType {
2025-05-13 16:34:31 +08:00
name: string;
type: string;
type_length: string;
default: string;
comment: string;
not_null: boolean;
formShow: boolean;
tableShow: boolean;
formType: string;
search: boolean;
searchValue: string;
2025-05-12 17:04:27 +08:00
}
2025-05-13 16:34:31 +08:00
const createEmptyRow = (): RowType => ({
name: '',
2025-05-13 16:53:36 +08:00
type: 'varchar',
2025-05-13 16:34:31 +08:00
type_length: '',
default: '',
comment: '',
not_null: true,
formShow: true,
tableShow: true,
formType: 'VbenInput',
search: true,
searchValue: '=',
});
2025-05-12 17:04:27 +08:00
2025-05-13 16:34:31 +08:00
const tableData = ref<RowType[]>([createEmptyRow()]);
// 暴露常量
defineExpose({
tableData,
});
2025-05-12 17:04:27 +08:00
2025-05-13 16:34:31 +08:00
// 添加行
const addRow = () => tableData.value.push(createEmptyRow());
2025-05-12 17:04:27 +08:00
2025-05-13 16:34:31 +08:00
// 删除行
const deleteRow = (index: number) => {
if (tableData.value.length > 1) {
tableData.value.splice(index, 1);
}
2025-05-12 17:04:27 +08:00
};
2025-05-13 16:34:31 +08:00
// 表格列配置
const columns = computed(() => [
{ title: '字段名', dataIndex: 'name', width: 150 },
{ title: '类型', dataIndex: 'type', width: 120 },
{ title: '字段长度', dataIndex: 'type_length', width: 120 },
{ title: '默认值', dataIndex: 'default', width: 120 },
{ title: '注释', dataIndex: 'comment', width: 200 },
{ title: '基础配置', dataIndex: 'base', width: 100 },
{ title: '搜索配置', dataIndex: 'search', width: 120 },
{
title: '操作',
dataIndex: 'action',
width: 100,
fixed: 'right',
},
]);
2025-08-31 09:20:42 +08:00
function handleKeyClick(key: string) {
message.info(`点击了Key ${key}`);
}
function handleValueClick(value: JsonViewerValue) {
message.info(`点击了Value ${JSON.stringify(value)}`);
}
function handleCopied(_event: JsonViewerAction) {
message.success('已复制JSON');
}
const jsonValue = ref('');
const changeJsonValue = () => {
tableData.value = JSON.parse(jsonValue.value);
};
2025-05-12 17:04:27 +08:00
</script>
<template>
<Page auto-content-height>
2025-08-31 09:20:42 +08:00
<Input v-model:value="jsonValue" />
<Button @click="changeJsonValue">写入json</Button>
<JsonViewer
:value="tableData"
:expand-depth="3"
copyable
:sort="false"
@key-click="handleKeyClick"
@value-click="handleValueClick"
@copied="handleCopied"
boxed
/>
2025-05-13 16:34:31 +08:00
<Table
:columns="columns"
:data-source="tableData"
:pagination="false"
bordered
row-key="index"
>
<template #bodyCell="{ column, record, index }">
<!-- 操作列 -->
<template v-if="column.dataIndex === 'action'">
<div class="flex gap-2">
<Button danger @click="deleteRow(index)">删除</Button>
<Button type="primary" @click="addRow"> 添加行 </Button>
</div>
</template>
<!-- 字段名编辑 -->
<template v-if="column.dataIndex === 'name'">
<Input v-model:value="record.name" autofocus />
</template>
<!-- 类型选择 -->
<template v-if="column.dataIndex === 'type'">
<Select
v-model:value="record.type"
:options="filedType"
show-search
style="width: 100%"
autofocus
/>
</template>
<!-- 默认值编辑 -->
<template v-if="column.dataIndex === 'type_length'">
<Input v-model:value="record.type_length" autofocus />
</template>
<!-- 默认值编辑 -->
<template v-if="column.dataIndex === 'default'">
<Input v-model:value="record.default" autofocus />
2025-05-12 17:04:27 +08:00
</template>
2025-05-13 16:34:31 +08:00
<!-- 注释编辑 -->
<template v-if="column.dataIndex === 'comment'">
<Input v-model:value="record.comment" autofocus />
</template>
<!-- 基础配置 -->
<template v-if="column.dataIndex === 'base'">
<!-- 开关控件 -->
2025-08-31 09:20:42 +08:00
<div>不能为空 <Switch v-model:checked="record.not_null" /></div>
2025-05-13 16:34:31 +08:00
<div class="mt-2">
表单显示 <Switch v-model:checked="record.formShow" />
</div>
<div class="mt-2">
表格显示 <Switch v-model:checked="record.tableShow" />
</div>
<div class="mt-2">
开启查询 <Switch v-model:checked="record.search" />
</div>
</template>
<!-- 搜索配置 -->
<template v-if="column.dataIndex === 'search'">
<!-- 开关控件 -->
<div class="mt-2">
表单类型
<Select
v-model:value="record.formType"
:options="formType"
show-search
style="width: 100%"
:disabled="!record.formShow"
autofocus
/>
</div>
<div class="mt-2">
查询类型
<Select
v-model:value="record.searchValue"
:options="[
{
label: '绝对查询',
value: '=',
},
{
label: '模糊查询',
value: 'like',
},
]"
style="width: 100%"
:disabled="!record.search"
autofocus
/>
</div>
</template>
<!-- 搜索配置 -->
<template v-if="column.dataIndex === 'formType'">
<!-- 开关控件 -->
2025-05-12 17:04:27 +08:00
</template>
</template>
2025-05-13 16:34:31 +08:00
</Table>
2025-05-12 17:04:27 +08:00
</Page>
</template>
2025-05-13 16:34:31 +08:00
<style scoped>
.ant-table-cell {
min-height: 45px;
padding: 8px 16px !important;
cursor: pointer;
}
</style>