feat: 参数

This commit is contained in:
dap 2024-10-05 14:36:21 +08:00
parent 258244005b
commit a77886a675
2 changed files with 186 additions and 100 deletions

View File

@ -1,9 +1,10 @@
import type { FormSchemaGetter } from '#/adapter'; import type { FormSchemaGetter, VxeGridProps } from '#/adapter';
import { DictEnum } from '@vben/constants'; import { DictEnum } from '@vben/constants';
import { getPopupContainer } from '@vben/utils'; import { getPopupContainer } from '@vben/utils';
import { getDictOptions } from '#/utils/dict'; import { getDictOptions } from '#/utils/dict';
import { renderDict } from '#/utils/render';
export const querySchema: FormSchemaGetter = () => [ export const querySchema: FormSchemaGetter = () => [
{ {
@ -32,6 +33,47 @@ export const querySchema: FormSchemaGetter = () => [
}, },
]; ];
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
{
title: '参数名称',
field: 'configName',
},
{
title: '参数KEY',
field: 'configKey',
},
{
title: '参数Value',
field: 'configValue',
},
{
title: '系统内置',
field: 'configType',
width: 120,
slots: {
default: ({ row }) => {
return renderDict(row.configType, DictEnum.SYS_YES_NO);
},
},
},
{
title: '备注',
field: 'remark',
},
{
title: '创建时间',
field: 'createTime',
},
{
field: 'action',
fixed: 'right',
slots: { default: 'action' },
title: '操作',
width: 180,
},
];
export const modalSchema: FormSchemaGetter = () => [ export const modalSchema: FormSchemaGetter = () => [
{ {
component: 'Input', component: 'Input',

View File

@ -1,24 +1,77 @@
<script setup lang="ts"> <script setup lang="ts">
import type { Recordable } from '@vben/types'; import type { Recordable } from '@vben/types';
import type { ColumnsType } from 'ant-design-vue/es/table';
import type { Config } from '#/api/system/config/model'; import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
import { onMounted, ref } from 'vue'; import { Modal, Popconfirm, Space } from 'ant-design-vue';
import dayjs from 'dayjs';
import { Page, useVbenModal } from '@vben/common-ui'; import { useVbenVxeGrid, type VxeGridProps } from '#/adapter';
import { DictEnum } from '@vben/constants'; import {
configExport,
import { Card, Space, Table } from 'ant-design-vue'; configList,
configRefreshCache,
import { useVbenForm } from '#/adapter'; configRemove,
import { configExport, configList } from '#/api/system/config'; } from '#/api/system/config';
import { downloadExcel } from '#/utils/file/download'; import { downloadExcel } from '#/utils/file/download';
import { renderDict } from '#/utils/render';
import configModal from './config-modal.vue'; import configModal from './config-modal.vue';
import { querySchema } from './data'; import { columns, querySchema } from './data';
const formOptions: VbenFormProps = {
schema: querySchema(),
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
};
const gridOptions: VxeGridProps = {
checkboxConfig: {
//
highlight: true,
//
reserve: true,
//
trigger: 'row',
},
columns,
height: 'auto',
keepSource: true,
pagerConfig: {},
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
//
if (formValues?.createTime) {
formValues.params = {
beginTime: dayjs(formValues.createTime[0]).format(
'YYYY-MM-DD 00:00:00',
),
endTime: dayjs(formValues.createTime[1]).format(
'YYYY-MM-DD 23:59:59',
),
};
Reflect.deleteProperty(formValues, 'createTime');
} else {
Reflect.deleteProperty(formValues, 'params');
}
return await configList({
pageNum: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
isHover: true,
keyField: 'configId',
},
round: true,
align: 'center',
showOverflow: true,
};
const [BasicTable, tableApi] = useVbenVxeGrid({ formOptions, gridOptions });
const [ConfigModal, modalApi] = useVbenModal({ const [ConfigModal, modalApi] = useVbenModal({
connectedComponent: configModal, connectedComponent: configModal,
}); });
@ -33,100 +86,91 @@ async function handleEdit(record: Recordable<any>) {
modalApi.open(); modalApi.open();
} }
const configDataList = ref<Config[]>([]); async function handleDelete(row: Recordable<any>) {
async function reload() { await configRemove(row.configId);
const resp = await configList(); await tableApi.reload();
configDataList.value = resp.rows;
} }
onMounted(reload); function handleMultiDelete() {
const rows = tableApi.grid.getCheckboxRecords();
const columns: ColumnsType = [ const ids = rows.map((row: any) => row.configId);
{ Modal.confirm({
align: 'center', title: '提示',
dataIndex: 'configName', okType: 'danger',
title: '参数名称', content: `确认删除选中的${ids.length}条记录吗?`,
onOk: async () => {
await configRemove(ids);
await tableApi.reload();
}, },
{
align: 'center',
dataIndex: 'configKey',
title: '参数KEY',
},
{
align: 'center',
dataIndex: 'configValue',
title: '参数Value',
},
{
align: 'center',
customRender: ({ value }) => {
return renderDict(value, DictEnum.SYS_YES_NO);
},
dataIndex: 'configType',
title: '系统内置',
},
{
align: 'center',
dataIndex: 'remark',
ellipsis: true,
title: '备注',
},
{
align: 'center',
dataIndex: 'createTime',
title: '创建时间',
},
{
align: 'center',
dataIndex: 'action',
title: '操作',
},
];
const [QueryForm] = useVbenForm({
//
collapsed: false,
//
commonConfig: {
//
componentProps: {
class: 'w-full',
},
},
schema: querySchema(),
//
showCollapseButton: true,
submitButtonOptions: {
text: '查询',
},
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
}); });
}
async function handleRefreshCache() {
await configRefreshCache();
await tableApi.reload();
}
</script> </script>
<template> <template>
<Page content-class="flex flex-col gap-3"> <Page :auto-content-height="true">
<Card> <BasicTable>
<QueryForm /> <template #toolbar-actions>
</Card> <span class="pl-[7px] text-[16px]">参数列表</span>
<div class="flex justify-end gap-[8px]"> </template>
<a-button @click="downloadExcel(configExport, '参数配置', {})"> <template #toolbar-tools>
<Space>
<a-button @click="handleRefreshCache"> 刷新缓存 </a-button>
<a-button
v-access:code="['system:config:export']"
@click="downloadExcel(configExport, '参数配置', {})"
>
{{ $t('pages.common.export') }} {{ $t('pages.common.export') }}
</a-button> </a-button>
<a-button type="primary" @click="handleAdd"> <a-button
{{ $t('pages.common.add') }} danger
type="primary"
v-access:code="['system:config:delete']"
@click="handleMultiDelete"
>
{{ $t('pages.common.delete') }}
</a-button> </a-button>
</div> <a-button
<Table :columns :data-source="configDataList" size="middle"> type="primary"
<template #bodyCell="{ column, record }"> v-access:code="['system:config:add']"
<template v-if="column.dataIndex === 'action'"> @click="handleAdd"
<Space> >
<a-button size="small" type="primary" @click="handleEdit(record)"> {{ $t('pages.common.add') }}
{{ $t('pages.common.edit') }}
</a-button> </a-button>
</Space> </Space>
</template> </template>
<template #action="{ row }">
<Space>
<a-button
size="small"
type="link"
v-access:code="['system:config:edit']"
@click="handleEdit(row)"
>
{{ $t('pages.common.edit') }}
</a-button>
<Popconfirm
placement="left"
title="确认删除?"
@confirm="handleDelete(row)"
>
<a-button
danger
size="small"
type="link"
v-access:code="['system:config:delete']"
@click.stop=""
>
{{ $t('pages.common.delete') }}
</a-button>
</Popconfirm>
</Space>
</template> </template>
</Table> </BasicTable>
<ConfigModal @reload="reload" /> <ConfigModal @reload="tableApi.reload()" />
</Page> </Page>
</template> </template>