From 5db8bdef8c035e92374e447d71f41a75e53c0eb5 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Mon, 31 Jul 2023 17:28:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8E=A5=E5=8F=A3=E7=89=88=E6=9C=AC=E5=88=A0?= =?UTF-8?q?=E9=99=A4=EF=BC=8C=E7=82=B9=E5=87=BB=E5=8F=96=E6=B6=88=EF=BC=8C?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E9=A1=B5=E9=9D=A2=E4=B8=80=E7=9B=B4=E8=BD=AC?= =?UTF-8?q?=E5=9C=88=E7=9A=84=E7=BC=BA=E9=99=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1028228 --user=王孝刚 【接口测试】接口场景-存在多个版本-点击删除某个版本,不点确定直接关闭-再点击版本-一直转圈加载中 https://www.tapd.cn/55049933/s/1399468 --- .../frontend/src/components/version/MxVersionHistory.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/framework/sdk-parent/frontend/src/components/version/MxVersionHistory.vue b/framework/sdk-parent/frontend/src/components/version/MxVersionHistory.vue index d7096f40cf..277e5531ea 100644 --- a/framework/sdk-parent/frontend/src/components/version/MxVersionHistory.vue +++ b/framework/sdk-parent/frontend/src/components/version/MxVersionHistory.vue @@ -160,6 +160,7 @@ export default { checkout(row) { this.loading = true; this.$emit('checkout', row); + this.loading = false; }, create(row) { this.loading = true; @@ -168,10 +169,12 @@ export default { del(row) { this.loading = true; this.$emit('del', row); + this.loading = false; }, setLatest(row) { this.loading = true; this.$emit('setLatest', row); + this.loading = false; }, handleVersionOptions() { let versionData = this.versionData;