From 1233a9a3e7b2cdf30474ffb2a52a7c5f5be6df95 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 17 九月 2025 14:31:40 +0800 Subject: [PATCH] fix: bug --- auto-imports.d.ts | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/auto-imports.d.ts b/auto-imports.d.ts index 4c4aadc..0c564e8 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -11,7 +11,7 @@ const AreaType: typeof import('./src/constants/enum')['AreaType'] const CategoryCode: typeof import('./src/constants/dic')['CategoryCode'] const CertificateTypeCodeEnum: typeof import('./src/constants/dic')['CertificateTypeCodeEnum'] - const CommonAnnexTableColumns: typeof import('@/constants')['CommonAnnexTableColumns'] + const CommonAnnexTableColumns: typeof import('./src/constants/common')['CommonAnnexTableColumns'] const EditorType: typeof import('./src/constants/editor')['EditorType'] const EditorTypeText: typeof import('./src/constants/editor')['EditorTypeText'] const EducationCodeEnum: typeof import('./src/constants/dic')['EducationCodeEnum'] @@ -101,7 +101,9 @@ const EnumUserType: typeof import('./src/constants/apiEnum')['EnumUserType'] const EnumUserTypeText: typeof import('./src/constants/apiEnumText')['EnumUserTypeText'] const EnumUserWalletTransactionType: typeof import('./src/constants/apiEnum')['EnumUserWalletTransactionType'] + const EnumUserWalletTransactionTypeText: typeof import('./src/constants/finance')['EnumUserWalletTransactionTypeText'] const EnumWalletTransactionStatus: typeof import('./src/constants/apiEnum')['EnumWalletTransactionStatus'] + const EnumWalletTransactionStatusText: typeof import('./src/constants/finance')['EnumWalletTransactionStatusText'] const FastButtonMap: typeof import('./src/constants/module')['FastButtonMap'] const FastColumnList: typeof import('./src/constants/module')['FastColumnList'] const FastDataButtonList: typeof import('./src/constants/module')['FastDataButtonList'] @@ -224,6 +226,8 @@ const useModel: typeof import('vue')['useModel'] const useOmit: typeof import('./src/hooks/help')['useOmit'] const useOmitProps: typeof import('./src/hooks/help')['useOmitProps'] + const usePortraitTable: typeof import('./src/hooks/portraitTable')['usePortraitTable'] + const usePortraitTableWithAttachment: typeof import('./src/hooks/portraitTable')['usePortraitTableWithAttachment'] const useResizeHander: typeof import('./src/hooks/useResizeHander')['useResizeHander'] const useRoute: typeof import('vue-router')['useRoute'] const useRouteView: typeof import('./src/hooks/useRouteView')['useRouteView'] @@ -274,6 +278,9 @@ // @ts-ignore export type { GlobalEvent, GlobalEventListener, GlobalEventContext } from './src/hooks/useEvent' import('./src/hooks/useEvent') + // @ts-ignore + export type { UsePortraitTableColumnsItem, UsePortraitTableOptions } from './src/hooks/portraitTable' + import('./src/hooks/portraitTable') } // for vue template auto import @@ -286,6 +293,7 @@ readonly AreaType: UnwrapRef<typeof import('./src/constants/enum')['AreaType']> readonly CategoryCode: UnwrapRef<typeof import('./src/constants/dic')['CategoryCode']> readonly CertificateTypeCodeEnum: UnwrapRef<typeof import('./src/constants/dic')['CertificateTypeCodeEnum']> + readonly CommonAnnexTableColumns: UnwrapRef<typeof import('./src/constants/common')['CommonAnnexTableColumns']> readonly EditorType: UnwrapRef<typeof import('./src/constants/editor')['EditorType']> readonly EditorTypeText: UnwrapRef<typeof import('./src/constants/editor')['EditorTypeText']> readonly EducationCodeEnum: UnwrapRef<typeof import('./src/constants/dic')['EducationCodeEnum']> @@ -370,7 +378,9 @@ readonly EnumUserType: UnwrapRef<typeof import('./src/constants/apiEnum')['EnumUserType']> readonly EnumUserTypeText: UnwrapRef<typeof import('./src/constants/apiEnumText')['EnumUserTypeText']> readonly EnumUserWalletTransactionType: UnwrapRef<typeof import('./src/constants/apiEnum')['EnumUserWalletTransactionType']> + readonly EnumUserWalletTransactionTypeText: UnwrapRef<typeof import('./src/constants/finance')['EnumUserWalletTransactionTypeText']> readonly EnumWalletTransactionStatus: UnwrapRef<typeof import('./src/constants/apiEnum')['EnumWalletTransactionStatus']> + readonly EnumWalletTransactionStatusText: UnwrapRef<typeof import('./src/constants/finance')['EnumWalletTransactionStatusText']> readonly FastButtonMap: UnwrapRef<typeof import('./src/constants/module')['FastButtonMap']> readonly FastColumnList: UnwrapRef<typeof import('./src/constants/module')['FastColumnList']> readonly FastDataButtonList: UnwrapRef<typeof import('./src/constants/module')['FastDataButtonList']> @@ -489,6 +499,8 @@ readonly useModel: UnwrapRef<typeof import('vue')['useModel']> readonly useOmit: UnwrapRef<typeof import('./src/hooks/help')['useOmit']> readonly useOmitProps: UnwrapRef<typeof import('./src/hooks/help')['useOmitProps']> + readonly usePortraitTable: UnwrapRef<typeof import('./src/hooks/portraitTable')['usePortraitTable']> + readonly usePortraitTableWithAttachment: UnwrapRef<typeof import('./src/hooks/portraitTable')['usePortraitTableWithAttachment']> readonly useResizeHander: UnwrapRef<typeof import('./src/hooks/useResizeHander')['useResizeHander']> readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']> readonly useRouteView: UnwrapRef<typeof import('./src/hooks/useRouteView')['useRouteView']> -- Gitblit v1.9.1