From affaddc03fcb550b249ddace53ad5184d52bfe00 Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Mon, 17 Oct 2022 14:37:11 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):?= =?UTF-8?q?=20=E9=A1=B9=E7=9B=AE=E7=AE=A1=E7=90=86=E6=88=90=E5=91=98?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=B1=95=E7=A4=BA=E6=95=B0=E9=87=8F=E4=B8=8E?= =?UTF-8?q?=E5=88=86=E9=A1=B5=E6=95=B0=E9=87=8F=E4=B8=8D=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1018122 --user=李玉号 【系统设置】项目管理-添加成员弹窗列表用户数和设置5个/页不一致 https://www.tapd.cn/55049933/s/1264059 --- .../frontend/src/business/workspace/project/MsProject.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-setting/frontend/src/business/workspace/project/MsProject.vue b/system-setting/frontend/src/business/workspace/project/MsProject.vue index 68cd090fce..e39c3170ee 100644 --- a/system-setting/frontend/src/business/workspace/project/MsProject.vue +++ b/system-setting/frontend/src/business/workspace/project/MsProject.vue @@ -403,7 +403,7 @@ export default { name: '', projectId: row.id }; - getProjectMemberPages(this.currentPage, this.pageSize, row.workspaceId, param).then(res => { + getProjectMemberPages(this.dialogCurrentPage, this.dialogPageSize, row.workspaceId, param).then(res => { let data = res.data; let {listObject, itemCount} = data; this.memberLineData = listObject; From ae0e401b6e7f2206354fe52732e1b8c37eb4cf2c Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Mon, 17 Oct 2022 11:38:37 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix(=E9=A1=B9=E7=9B=AE=E8=AE=BE=E7=BD=AE):?= =?UTF-8?q?=20=E4=BF=AE=E5=A4=8D=E9=80=9A=E7=94=A8=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E9=87=8D=E5=A4=8D=E6=97=A0=E6=B3=95=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=96=B0=E7=9A=84=E5=8F=82=E6=95=B0=E7=9A=84=E7=BC=BA?= =?UTF-8?q?=E9=99=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1018184 --user=王孝刚 【项目设置】项目环境-编辑环境-通用配置-手动添加一个参数不能自动添加一行空行,只能批量添加参数 https://www.tapd.cn/55049933/s/1263629 --- .../src/components/environment/commons/ApiScenarioVariables.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/sdk-parent/frontend/src/components/environment/commons/ApiScenarioVariables.vue b/framework/sdk-parent/frontend/src/components/environment/commons/ApiScenarioVariables.vue index 42761822fa..d01c9c839f 100644 --- a/framework/sdk-parent/frontend/src/components/environment/commons/ApiScenarioVariables.vue +++ b/framework/sdk-parent/frontend/src/components/environment/commons/ApiScenarioVariables.vue @@ -194,7 +194,7 @@ export default { if (repeatKey !== "") { this.$warning(this.$t('api_test.environment.common_config') + "【" + repeatKey + "】" + this.$t('load_test.param_is_duplicate')); } - if (isNeedCreate && !repeatKey) { + if (isNeedCreate) { this.variables.push(new KeyValue({enable: true, id: getUUID(), type: 'CONSTANT'})); } this.$emit('change', this.variables);