From 024051df769ecfe09b7a1900d882f99cf6b1e7f8 Mon Sep 17 00:00:00 2001 From: zhaojisen <1301338853@qq.com> Date: Thu, 20 Mar 2025 15:52:27 +0800 Subject: [PATCH] Fixed: Plateform Clone --- src/views/assets/Platform/PlatformList.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/assets/Platform/PlatformList.vue b/src/views/assets/Platform/PlatformList.vue index 3deab8827..905bda257 100644 --- a/src/views/assets/Platform/PlatformList.vue +++ b/src/views/assets/Platform/PlatformList.vue @@ -115,6 +115,11 @@ export default { vm.$route.query._type = row.type.value vm.$route.query._category = row.category.value vm.$refs.genericListTable.onUpdate({ row, col }) + }, + onClone: ({ row, col }) => { + vm.$route.query._type = row.type.value + vm.$route.query._category = row.category.value + vm.$refs.genericListTable.onClone({ row, col }) } } }