From 7619abb71d1cd0061bb4caa065a583f15b7bcec2 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Mon, 5 Dec 2022 14:00:08 +0800 Subject: [PATCH 1/6] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):?= =?UTF-8?q?=20=E6=89=B9=E9=87=8F=E5=85=B3=E8=81=94=E9=9C=80=E6=B1=82?= =?UTF-8?q?=E5=A4=B1=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1020032 --user=陈建星 【测试跟踪】上传jira插件-测试用例-批量关联jira需求-提示关联成功,实际没关联 https://www.tapd.cn/55049933/s/1312398 --- test-track/frontend/src/api/testCase.js | 4 ++++ .../frontend/src/business/case/components/TestCaseList.vue | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/test-track/frontend/src/api/testCase.js b/test-track/frontend/src/api/testCase.js index 57cc67377e..a954ff06eb 100644 --- a/test-track/frontend/src/api/testCase.js +++ b/test-track/frontend/src/api/testCase.js @@ -82,6 +82,10 @@ export function testCasePublicBatchDeleteToGc(param) { return post(BASE_URL + 'batch/movePublic/deleteToGc', param); } +export function testCaseBatchRelateDemand(param) { + return post(BASE_URL + 'batch/relate/demand', param); +} + export function getTestCaseFollow(id) { return get(BASE_URL + `follow/${id}`); } diff --git a/test-track/frontend/src/business/case/components/TestCaseList.vue b/test-track/frontend/src/business/case/components/TestCaseList.vue index 0e4acebd79..baa9458cf9 100644 --- a/test-track/frontend/src/business/case/components/TestCaseList.vue +++ b/test-track/frontend/src/business/case/components/TestCaseList.vue @@ -246,9 +246,9 @@ import { getTestCaseStep, getTestCaseVersions, testCaseBatchCopy, testCaseBatchDelete, - testCaseBatchDeleteToGc, testCaseBatchEdit, + testCaseBatchDeleteToGc, testCaseBatchEdit, testCaseBatchRelateDemand, testCaseDelete, - testCaseDeleteToGc, testCaseList, testCasePublicBatchDeleteToGc, + testCaseDeleteToGc, testCaseList, testCaseReduction } from "@/api/testCase"; import {getGraphByCondition} from "@/api/graph"; @@ -993,7 +993,7 @@ export default { param.condition = this.condition; param.demandId = form.demandId; param.demandName = form.demandName; - testCasePublicBatchDeleteToGc(param) + testCaseBatchRelateDemand(param) .then(() => { this.$success(this.$t('commons.save_success')); this.refresh(); From 6add6f4b724df1ad0f5c9a646286e23d5a203d06 Mon Sep 17 00:00:00 2001 From: zhangyong Date: Mon, 5 Dec 2022 15:10:30 +0800 Subject: [PATCH 2/6] =?UTF-8?q?feat(UI=E8=87=AA=E5=8A=A8=E5=8C=96):=20?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E6=8A=A5=E5=91=8A=E6=98=BE=E7=A4=BA=EF=BC=88?= =?UTF-8?q?=E8=BF=90=E8=A1=8C=E6=A8=A1=E5=BC=8F=E3=80=81=E8=B5=84=E6=BA=90?= =?UTF-8?q?=E6=B1=A0=EF=BC=89-UI=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --story=1010762 --user=张勇 【测试跟踪】测试报告显示(运行模式、资源池)-UI测试 https://www.tapd.cn/55049933/s/1312668 --- framework/sdk-parent/frontend/src/i18n/lang/en-US.js | 3 ++- framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js | 3 ++- framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/framework/sdk-parent/frontend/src/i18n/lang/en-US.js b/framework/sdk-parent/frontend/src/i18n/lang/en-US.js index 1090ac24e8..915b4b6d23 100644 --- a/framework/sdk-parent/frontend/src/i18n/lang/en-US.js +++ b/framework/sdk-parent/frontend/src/i18n/lang/en-US.js @@ -1078,7 +1078,8 @@ const message = { avg_response_time: 'Average Response Time', tps: 'Transactions Per Second', plan_share_url: 'Whether the link jump is logged in', - rename_report: 'Rename report' + rename_report: 'Rename report', + run_model: 'Run model' }, load_test: { exist_related_file: 'Existed Relate Files', diff --git a/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js b/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js index 1c835b3429..13855477d7 100644 --- a/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js +++ b/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js @@ -1086,7 +1086,8 @@ const message = { avg_response_time: '平均响应时间', tps: '每秒传输的事物处理个数', plan_share_url: '链接跳转是否登陆', - rename_report: '重命名报告' + rename_report: '重命名报告', + run_model: '运行模式' }, load_test: { exist_related_file: '已存在的关联文件', diff --git a/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js b/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js index 95478d1b8a..3d8aa7d4f4 100644 --- a/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js +++ b/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js @@ -1083,7 +1083,8 @@ const message = { avg_response_time: '平均響應時間', tps: '每秒傳輸的事物處理個數', plan_share_url: '鏈接跳轉是否登陸', - rename_report: '重命名報告' + rename_report: '重命名報告', + run_model: '運行模式' }, load_test: { exist_related_file: '已存在的關聯文件', From 7871f3db069856d8ed37b34be68628dcc0b5e236 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Mon, 5 Dec 2022 15:14:45 +0800 Subject: [PATCH 3/6] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):?= =?UTF-8?q?=20=E7=A6=85=E9=81=93=E5=9B=BE=E7=89=87=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E5=90=8E=E4=B8=8D=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1020301 --user=陈建星 【测试跟踪】github #20125, 同步禅道缺陷后,缺陷内容中的图片无法展示 https://www.tapd.cn/55049933/s/1312407 --- .../src/components/MsMarkDownText.vue | 8 +++--- .../IssueProxyResourceController.java | 4 +-- .../wapper/IssueProxyResourceService.java | 2 +- .../frontend/src/business/issue/IssueList.vue | 28 +++++++++---------- .../src/business/issue/MsReviewTableItem.vue | 27 ++++++++++++++++++ 5 files changed, 47 insertions(+), 22 deletions(-) create mode 100644 test-track/frontend/src/business/issue/MsReviewTableItem.vue diff --git a/framework/sdk-parent/frontend/src/components/MsMarkDownText.vue b/framework/sdk-parent/frontend/src/components/MsMarkDownText.vue index 2dd450f3ad..2a6adb6d7d 100644 --- a/framework/sdk-parent/frontend/src/components/MsMarkDownText.vue +++ b/framework/sdk-parent/frontend/src/components/MsMarkDownText.vue @@ -1,5 +1,5 @@