Fixed: Record

This commit is contained in:
zhaojisen
2025-03-19 17:52:15 +08:00
committed by ZhaoJiSen
parent d557957b34
commit 5d6b48831c

View File

@@ -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
}
})
}
}
]
}