diff --git a/frontend/src/components/business/ms-batch-modal/types.ts b/frontend/src/components/business/ms-batch-modal/types.ts index cac1daa7f5..7c048f1364 100644 --- a/frontend/src/components/business/ms-batch-modal/types.ts +++ b/frontend/src/components/business/ms-batch-modal/types.ts @@ -1,4 +1,6 @@ -export interface BatchModel { +import type { TableQueryParams } from '@/models/common'; + +export interface BatchModel extends TableQueryParams { id?: string; organizationId?: string; memberIds?: string[]; diff --git a/frontend/src/components/business/ms-link-file/storageList.vue b/frontend/src/components/business/ms-link-file/storageList.vue index a94f224fcb..63f3a8fe5d 100644 --- a/frontend/src/components/business/ms-link-file/storageList.vue +++ b/frontend/src/components/business/ms-link-file/storageList.vue @@ -108,14 +108,11 @@ } } - watch( - () => props.showType, - (val) => { - if (val === 'Storage') { - initRepositories(); - } + watchEffect(() => { + if (props.showType === 'Storage') { + initRepositories(); } - ); + }); /** * 初始化模块文件数量 diff --git a/frontend/src/views/bug-management/components/bug-detail-drawer.vue b/frontend/src/views/bug-management/components/bug-detail-drawer.vue index 97279de7be..662a80c4ec 100644 --- a/frontend/src/views/bug-management/components/bug-detail-drawer.vue +++ b/frontend/src/views/bug-management/components/bug-detail-drawer.vue @@ -776,6 +776,10 @@ .left-bug-detail { height: 88%; } + .tab-pane-container { + @apply flex-1 overflow-y-auto px-4; + .ms-scroll-bar(); + } //:deep(.w-full .arco-form-item-label) { // display: inline-block; // width: 100%; diff --git a/frontend/src/views/bug-management/components/commentTab.vue b/frontend/src/views/bug-management/components/commentTab.vue index b76fe0233f..41c5ef85fe 100644 --- a/frontend/src/views/bug-management/components/commentTab.vue +++ b/frontend/src/views/bug-management/components/commentTab.vue @@ -1,5 +1,5 @@