diff --git a/src/components.d.ts b/src/components.d.ts index 493575d..8c02785 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -7,7 +7,6 @@ export {} /* prettier-ignore */ declare module 'vue' { export interface GlobalComponents { - AAlert: typeof import('ant-design-vue/es')['Alert'] AAvatar: typeof import('ant-design-vue/es')['Avatar'] AButton: typeof import('ant-design-vue/es')['Button'] ACard: typeof import('ant-design-vue/es')['Card'] @@ -22,7 +21,6 @@ declare module 'vue' { AFormItem: typeof import('ant-design-vue/es')['FormItem'] AImage: typeof import('ant-design-vue/es')['Image'] AInput: typeof import('ant-design-vue/es')['Input'] - AInputPassword: typeof import('ant-design-vue/es')['InputPassword'] AInputSearch: typeof import('ant-design-vue/es')['InputSearch'] ALayout: typeof import('ant-design-vue/es')['Layout'] ALayoutContent: typeof import('ant-design-vue/es')['LayoutContent'] @@ -50,11 +48,9 @@ declare module 'vue' { ATabPane: typeof import('ant-design-vue/es')['TabPane'] ATabs: typeof import('ant-design-vue/es')['Tabs'] ATag: typeof import('ant-design-vue/es')['Tag'] + ATextarea: typeof import('ant-design-vue/es')['Textarea'] ATooltip: typeof import('ant-design-vue/es')['Tooltip'] - ATransfer: typeof import('ant-design-vue/es')['Transfer'] - ATree: typeof import('ant-design-vue/es')['Tree'] ATypographyLink: typeof import('ant-design-vue/es')['TypographyLink'] - ATypographyParagraph: typeof import('ant-design-vue/es')['TypographyParagraph'] ATypographyTitle: typeof import('ant-design-vue/es')['TypographyTitle'] AuxiliaryItemRender: typeof import('./components/form-render/auxiliary-item-render.vue')['default'] AWatermark: typeof import('ant-design-vue/es')['Watermark'] diff --git a/src/views/stock/stocktaking/resultForm.vue b/src/views/stock/stocktaking/resultForm.vue index d129c12..e0d20b5 100644 --- a/src/views/stock/stocktaking/resultForm.vue +++ b/src/views/stock/stocktaking/resultForm.vue @@ -30,7 +30,8 @@ const props = defineProps( { applyId: { type: Number, - required: false + required: false, + default: 0 } } )