From 5d6b48831c99a4bb04865ffd4733898a49c76f58 Mon Sep 17 00:00:00 2001 From: zhaojisen <1301338853@qq.com> Date: Wed, 19 Mar 2025 17:52:15 +0800 Subject: [PATCH] Fixed: Record --- .../accounts/Automation/BaseExecutionList.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/views/accounts/Automation/BaseExecutionList.vue b/src/views/accounts/Automation/BaseExecutionList.vue index 2b89546a1..e26f71d18 100644 --- a/src/views/accounts/Automation/BaseExecutionList.vue +++ b/src/views/accounts/Automation/BaseExecutionList.vue @@ -121,6 +121,20 @@ export default { vm.visible = true vm.reportUrl = `${this.url}${row.id}/report/` } + }, + { + name: 'record', + title: this.$t('Record'), + can: this.$hasPerm('accounts.view_changesecretrecord'), + callback: function({ row }) { + return this.$router.push({ + name: 'AccountChangeSecretList', + query: { + tab: 'ChangeSecretRecord', + execution_id: row.id + } + }) + } } ] }