From 44c39de459b4fcc50c0fbc6a1e2ca0171fe6e284 Mon Sep 17 00:00:00 2001 From: feng <1304903146@qq.com> Date: Thu, 20 Mar 2025 11:21:40 +0800 Subject: [PATCH] perf: report --- src/views/accounts/Automation/BaseExecutionList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/accounts/Automation/BaseExecutionList.vue b/src/views/accounts/Automation/BaseExecutionList.vue index fb499f126..f75bca362 100644 --- a/src/views/accounts/Automation/BaseExecutionList.vue +++ b/src/views/accounts/Automation/BaseExecutionList.vue @@ -42,7 +42,7 @@ export default { }, customActions: { type: Object, - default: () => ({}) + default: null } }, data() { @@ -123,8 +123,8 @@ export default { can: this.$hasPerm('accounts.view_' + this.resource), callback: function({ row }) { vm.visible = true - this.url = this.url.split('?')[0] - vm.reportUrl = `${this.url}${row.id}/report/` + const url = this.url.split('?')[0] + vm.reportUrl = `${url}${row.id}/report/` } } ]