| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <script lang="ts" setup>
- import type { VbenFormProps } from '@vben/common-ui';
- import type { VxeGridListeners, VxeGridProps } from '#/adapter/vxe-table';
- import { h } from 'vue';
- import { Page, useVbenModal } from '@vben/common-ui';
- import { MdiDelete, MdiDetail, MdiEdit } from '@vben/icons';
- import { ElMessage, ElMessageBox, ElTag } from 'element-plus';
- import { useVbenVxeGrid } from '#/adapter/vxe-table';
- import { deleteDictApi, getDictListApi } from '#/api/dict';
- import { $t } from '#/locales';
- import DictForm from './form.vue';
- const formOptions: VbenFormProps = {
- // 默认展开
- collapsed: true,
- // 控制表单是否显示折叠按钮
- showCollapseButton: true,
- // 按下回车时是否提交表单
- submitOnEnter: true,
- schema: [
- {
- component: 'Input',
- fieldName: 'title',
- label: '配置名称',
- componentProps: {
- placeholder: $t('ui.placeholder.input'),
- clearable: true,
- },
- },
- {
- component: 'Input',
- fieldName: 'groupname',
- label: '组名称',
- componentProps: {
- placeholder: $t('ui.placeholder.input'),
- clearable: true,
- },
- },
- {
- component: 'Select',
- fieldName: 'available',
- label: '状态',
- componentProps: {
- placeholder: $t('ui.placeholder.select'),
- clearable: true,
- options: [
- { label: '可用', value: 1 },
- { label: '不可用', value: 0 },
- ],
- },
- },
- ],
- wrapperClass: 'grid-cols-1 md:grid-cols-3 lg:grid-cols-5',
- };
- const gridOptions: VxeGridProps<any> = {
- toolbarConfig: {
- custom: true,
- export: true,
- refresh: true,
- zoom: true,
- },
- height: 'auto',
- exportConfig: {},
- pagerConfig: {},
- rowConfig: {
- isHover: true,
- },
- stripe: true,
- proxyConfig: {
- response: {
- result: 'Data',
- total: 'Total',
- },
- ajax: {
- query: async ({ page }, formValues) => {
- return await getDictListApi({
- pageindex: page.currentPage,
- rows: page.pageSize,
- ...formValues,
- });
- },
- },
- },
- columns: [
- { title: 'ID', field: 'id', sortable: true },
- { title: '配置名称', field: 'title', sortable: true },
- { title: '组名称', field: 'groupname', sortable: true },
- { title: '配置值', field: 'substance', sortable: true },
- {
- title: '状态',
- field: 'available',
- sortable: true,
- slots: {
- default: ({ row }) => {
- const status = row.available;
- return h(
- ElTag,
- {
- type: status === 1 ? 'success' : 'danger',
- effect: 'dark',
- size: 'small',
- round: true,
- },
- () => (status === 1 ? '可用' : '不可用'),
- );
- },
- },
- },
- { title: '描述', field: 'describes', sortable: true },
- {
- title: '前端可用',
- field: 'ispublic',
- slots: {
- default: ({ row }) => {
- const status = row.ispublic;
- return h(
- ElTag,
- {
- type: status === 1 ? 'success' : 'info',
- effect: 'light',
- size: 'small',
- },
- () => (status === 1 ? '是' : '否'),
- );
- },
- },
- },
- // { title: '排序值', field: 'ranknum' },
- {
- title: '操作',
- field: 'action',
- fixed: 'right',
- slots: { default: 'action' },
- width: 150,
- },
- ],
- };
- const gridEvents: VxeGridListeners<any> = {
- cellDblclick: ({ row }) => {
- handleDetail(row);
- },
- };
- const [Grid, gridApi] = useVbenVxeGrid({
- gridEvents,
- gridOptions,
- formOptions,
- });
- const [Modal, modalApi] = useVbenModal({
- fullscreenButton: false,
- closeOnClickModal: false,
- closeOnPressEscape: false,
- connectedComponent: DictForm,
- });
- /* 创建 */
- function handleCreate() {
- modalApi.setState({ showCancelButton: true });
- modalApi.setData({ formType: 'create' }).open();
- }
- /* 编辑 */
- function handleEdit(row: any) {
- modalApi.setState({ showCancelButton: true });
- modalApi.setData({ formType: 'edit', row }).open();
- }
- /* 详情 */
- function handleDetail(row: any) {
- modalApi.setState({ showCancelButton: false });
- modalApi.setData({ formType: 'detail', row }).open();
- }
- /* 删除 */
- async function handleDelete(row: any) {
- try {
- await ElMessageBox.confirm('确认要删除该配置吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- });
- await deleteDictApi({ 'id.value': row.id });
- ElMessage.success('删除成功');
- gridApi.reload();
- } catch (error) {
- console.error(error);
- }
- }
- function handleFinish() {
- gridApi.reload();
- }
- </script>
- <template>
- <Page auto-content-height>
- <Grid table-title="数据字典列表">
- <template #toolbar-tools>
- <el-button type="primary" @click="handleCreate"> 新增 </el-button>
- </template>
- <template #action="{ row }">
- <el-tooltip
- class="box-item"
- effect="dark"
- content="详情"
- placement="top"
- >
- <el-button
- round
- @click="() => handleDetail(row)"
- :icon="MdiDetail"
- class="!p-2"
- />
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="编辑"
- placement="top"
- >
- <el-button
- round
- @click="() => handleEdit(row)"
- :icon="MdiEdit"
- class="!p-2"
- />
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="删除"
- placement="top"
- >
- <el-button
- round
- @click="() => handleDelete(row)"
- :icon="MdiDelete"
- class="!p-2"
- />
- </el-tooltip>
- </template>
- </Grid>
- <Modal @finish="handleFinish" />
- </Page>
- </template>
|