chore: 更改导入位置

This commit is contained in:
dap
2024-10-17 15:16:22 +08:00
parent 70e7d6a131
commit 4a393a1920
64 changed files with 94 additions and 64 deletions

View File

@@ -1,8 +1,10 @@
import type { VxeGridProps } from '#/adapter/vxe-table';
import { getPopupContainer } from '@vben/utils';
import dayjs from 'dayjs';
import { type FormSchemaGetter, type VxeGridProps, z } from '#/adapter';
import { type FormSchemaGetter, z } from '#/adapter/form';
export const querySchema: FormSchemaGetter = () => [
{

View File

@@ -11,7 +11,7 @@ import { getPopupContainer } from '@vben/utils';
import { Modal, Popconfirm, Space } from 'ant-design-vue';
import dayjs from 'dayjs';
import { useVbenVxeGrid, type VxeGridProps } from '#/adapter';
import { useVbenVxeGrid, type VxeGridProps } from '#/adapter/vxe-table';
import {
tenantExport,
tenantList,

View File

@@ -7,7 +7,7 @@ import { cloneDeep } from '@vben/utils';
import { Tag } from 'ant-design-vue';
import { useVbenForm } from '#/adapter';
import { useVbenForm } from '#/adapter/form';
import { tenantAdd, tenantInfo, tenantUpdate } from '#/api/system/tenant';
import { packageSelectList } from '#/api/system/tenant-package';
import { useTenantStore } from '#/store/tenant';