From 722de826767ccc71b9499f6b76c83aec9a96c004 Mon Sep 17 00:00:00 2001 From: guoyuqi Date: Tue, 8 Nov 2022 19:03:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=80=A7=E8=83=BD=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=80=A7=E8=83=BD=E6=B5=8B=E8=AF=95=E5=AF=B9?= =?UTF-8?q?=E6=AF=94=E6=8A=A5=E5=91=8A=E4=B8=8D=E8=83=BD=E5=85=A8=E5=B1=8F?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001019517 --user=郭雨琦 --- .../src/business/report/components/SameTestReports.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/performance-test/frontend/src/business/report/components/SameTestReports.vue b/performance-test/frontend/src/business/report/components/SameTestReports.vue index 241b7e8272..f95678378e 100644 --- a/performance-test/frontend/src/business/report/components/SameTestReports.vue +++ b/performance-test/frontend/src/business/report/components/SameTestReports.vue @@ -4,10 +4,11 @@ :title="$t('load_test.completed_test_report')" width="60%" v-loading="loading" :show-close="false" + :fullscreen="showFullscreen" :visible.sync="loadReportVisible"> - + @@ -71,6 +72,7 @@ export default { report: {}, compareReports: [], screenHeight: 'calc(100vh - 400px)', + showFullscreen:false, } }, methods: { @@ -99,7 +101,6 @@ export default { }) }, handleCompare() { - let reportIds = [...this.$refs.table.selectIds]; this.tableData .filter(r => reportIds.indexOf(r.id) > -1 && this.report.id !== r.id) @@ -109,6 +110,9 @@ export default { this.close(); this.$router.push({path: '/performance/report/compare/' + reportIds[0]}); }, + fullScreen(){ + this.showFullscreen = !this.showFullscreen; + } } }