@@ -68,10 +68,7 @@
legendData: LegendData[];
requestTotal: number;
size?: string;
- offset?: string;
}>();
-
- const defaultOffset = ref('top-[30%] right-0 bottom-0 left-0');
diff --git a/frontend/src/views/setting/organization/serviceIntegration/locale/en-US.ts b/frontend/src/views/setting/organization/serviceIntegration/locale/en-US.ts
index f538a3c28a..ecfbe90c4d 100644
--- a/frontend/src/views/setting/organization/serviceIntegration/locale/en-US.ts
+++ b/frontend/src/views/setting/organization/serviceIntegration/locale/en-US.ts
@@ -1,9 +1,7 @@
export default {
'organization.service.searchPlugin': 'Search by plug-in name',
- 'system.service.statusEnableTip':
- 'Open: projects can integrate with the platform and generate default templates for the platform',
- 'system.service.statusDisableTip':
- 'Shutdown: the project can not integrate with the platform and the default template for the platform is not available',
+ 'system.service.statusEnableTip': 'Open: Projects can be integrated with the platform',
+ 'system.service.statusDisableTip': 'Shutdown: Projects cannot integrate with the platform',
'organization.service.headerTip': 'Service integration usage guidelines',
'organization.service.integrationList': 'Integration of List',
'organization.service.packUp': 'Pack Up',
diff --git a/frontend/src/views/setting/organization/serviceIntegration/locale/zh-CN.ts b/frontend/src/views/setting/organization/serviceIntegration/locale/zh-CN.ts
index f58b48edf0..de5845d60e 100644
--- a/frontend/src/views/setting/organization/serviceIntegration/locale/zh-CN.ts
+++ b/frontend/src/views/setting/organization/serviceIntegration/locale/zh-CN.ts
@@ -1,7 +1,7 @@
export default {
'organization.service.searchPlugin': '通过插件名称搜索',
- 'organization.service.statusEnableTip': '开启:项目可以与该平台集成并生成该平台的默认模板',
- 'organization.service.statusDisableTip': '关闭:项目无法与该平台集成且该平台默认模板不可用',
+ 'organization.service.statusEnableTip': '开启:项目可以与该平台集成',
+ 'organization.service.statusDisableTip': '关闭:项目无法与该平台集成',
'organization.service.headerTip': '服务集成 使用指引',
'organization.service.integrationList': '集成列表',
'organization.service.packUp': '收起',
diff --git a/frontend/src/views/test-plan/report/detail/component/bugTable.vue b/frontend/src/views/test-plan/report/detail/component/bugTable.vue
index 0e9b8556c0..4769a78414 100644
--- a/frontend/src/views/test-plan/report/detail/component/bugTable.vue
+++ b/frontend/src/views/test-plan/report/detail/component/bugTable.vue
@@ -17,6 +17,7 @@
const props = defineProps<{
reportId: string;
shareId?: string;
+ isDelete: boolean;
}>();
const tableStore = useTableStore();
@@ -79,8 +80,10 @@
loadList();
}
- onBeforeMount(() => {
- loadCaseList();
+ watchEffect(() => {
+ if (props.reportId && !props.isDelete) {
+ loadCaseList();
+ }
});
await tableStore.initColumn(TableKeyEnum.TEST_PLAN_REPORT_DETAIL_BUG, columns, 'drawer');
diff --git a/frontend/src/views/test-plan/report/detail/component/featureCaseTable.vue b/frontend/src/views/test-plan/report/detail/component/featureCaseTable.vue
index 3bd95bb6dd..2f00eda8ba 100644
--- a/frontend/src/views/test-plan/report/detail/component/featureCaseTable.vue
+++ b/frontend/src/views/test-plan/report/detail/component/featureCaseTable.vue
@@ -32,6 +32,7 @@
const props = defineProps<{
reportId: string;
shareId?: string;
+ isDelete: boolean;
}>();
const tableStore = useTableStore();
@@ -114,8 +115,10 @@
loadList();
}
- onBeforeMount(() => {
- loadCaseList();
+ watchEffect(() => {
+ if (props.reportId && !props.isDelete) {
+ loadCaseList();
+ }
});
await tableStore.initColumn(TableKeyEnum.TEST_PLAN_REPORT_DETAIL_FEATURE_CASE, columns, 'drawer');
diff --git a/frontend/src/views/test-plan/report/detail/component/planDetail.vue b/frontend/src/views/test-plan/report/detail/component/planDetail.vue
index 8ca5a5ea45..992482e737 100644
--- a/frontend/src/views/test-plan/report/detail/component/planDetail.vue
+++ b/frontend/src/views/test-plan/report/detail/component/planDetail.vue
@@ -88,13 +88,12 @@
{{ t('report.detail.executionAnalysis') }}