diff --git a/apps/vue/package.json b/apps/vue/package.json index 49842c7c6..b88d7b3b2 100644 --- a/apps/vue/package.json +++ b/apps/vue/package.json @@ -44,7 +44,7 @@ "@vueuse/core": "^8.3.0", "@vueuse/shared": "^8.3.0", "@zxcvbn-ts/core": "^2.0.1", - "ant-design-vue": "^3.2.0", + "ant-design-vue": "^3.2.15", "axios": "^0.26.1", "codemirror": "^5.65.3", "cropperjs": "^1.5.12", diff --git a/apps/vue/src/api/task-management/model/backgroundJobInfoModel.ts b/apps/vue/src/api/task-management/model/backgroundJobInfoModel.ts index 3a167edd8..c6b398a88 100644 --- a/apps/vue/src/api/task-management/model/backgroundJobInfoModel.ts +++ b/apps/vue/src/api/task-management/model/backgroundJobInfoModel.ts @@ -32,8 +32,8 @@ export enum JobPriority { export interface BackgroundJobParamter { name: string; required: boolean; - DisplayName: string; - Description?: string; + displayName: string; + description?: string; } export interface BackgroundJobDefinition { diff --git a/apps/vue/src/components/Table/src/types/table.ts b/apps/vue/src/components/Table/src/types/table.ts index 443f71f06..4baf8fc29 100644 --- a/apps/vue/src/components/Table/src/types/table.ts +++ b/apps/vue/src/components/Table/src/types/table.ts @@ -1,7 +1,8 @@ import type { VNodeChild } from 'vue'; import type { PaginationProps } from './pagination'; import type { FormProps } from '/@/components/Form'; -import type { TableRowSelection as ITableRowSelection, ColumnProps } from 'ant-design-vue/lib/table/interface'; +import type { ColumnProps } from 'ant-design-vue/lib/table'; +import type { TableRowSelection as ITableRowSelection } from 'ant-design-vue/lib/table/interface'; import type { AdvanceSearchProps } from './advancedSearch'; import { ComponentType } from './componentType'; diff --git a/apps/vue/src/views/task-management/background-jobs/components/JobParamter.vue b/apps/vue/src/views/task-management/background-jobs/components/JobParamter.vue index e08dc2c73..bdd195838 100644 --- a/apps/vue/src/views/task-management/background-jobs/components/JobParamter.vue +++ b/apps/vue/src/views/task-management/background-jobs/components/JobParamter.vue @@ -10,7 +10,10 @@