style: system views code style

This commit is contained in:
xingyu4j
2025-04-22 11:25:11 +08:00
parent 4e1d6812ff
commit da3fd5b718
84 changed files with 1200 additions and 624 deletions

View File

@@ -1,10 +1,7 @@
import type { VxeTableGridOptions } from '@vben/plugins/vxe-table';
import type { VbenFormSchema } from '#/adapter/form';
import type { OnActionClickFn } from '#/adapter/vxe-table';
import type { SystemAreaApi } from '#/api/system/area';
import { z } from '#/adapter/form';
import { useAccess } from '@vben/access';
import type { VbenFormSchema } from '#/adapter/form';
import type { SystemAreaApi } from '#/api/system/area';
/** 查询 IP 的表单 */
export function useFormSchema(): VbenFormSchema[] {
@@ -25,7 +22,7 @@ export function useFormSchema(): VbenFormSchema[] {
componentProps: {
placeholder: '展示查询 IP 结果',
readonly: true,
}
},
},
];
}

View File

@@ -2,15 +2,16 @@
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import { Page, useVbenModal } from '@vben/common-ui';
import { Button } from 'ant-design-vue';
import { Search } from '@vben/icons';
import Form from './modules/form.vue';
import { DocAlert } from '#/components/doc-alert';
import { Button } from 'ant-design-vue';
import { useVbenVxeGrid } from '#/adapter/vxe-table';
import { getAreaTree } from '#/api/system/area';
import { DocAlert } from '#/components/doc-alert';
import { useGridColumns } from './data';
import Form from './modules/form.vue';
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,

View File

@@ -1,16 +1,15 @@
<script lang="ts" setup>
import { useVbenModal } from '@vben/common-ui';
import { message } from 'ant-design-vue';
import { $t } from '#/locales';
import { useVbenForm } from '#/adapter/form';
import { getAreaByIp } from '#/api/system/area';
import { $t } from '#/locales';
import { useFormSchema } from '../data';
const emit = defineEmits(['success']);
const [Form, { setFieldValue, setValues, validate, getValues }] = useVbenForm({
const [Form, { setFieldValue, validate, getValues }] = useVbenForm({
layout: 'horizontal',
schema: useFormSchema(),
showDefaultActions: false,
@@ -36,7 +35,7 @@ const [Modal, modalApi] = useVbenModal({
} finally {
modalApi.lock(false);
}
}
},
});
</script>