From a6ed1ea7289e544a2758ae98e4773296b33ac929 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Fri, 31 May 2024 16:09:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E9=83=A8=E5=88=86=E6=A8=A1=E7=89=88=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E5=8F=AF=E8=83=BD=E5=87=BA=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/frontend/src/views/link/view/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/frontend/src/views/link/view/index.vue b/core/frontend/src/views/link/view/index.vue index b615e765e1..3935a480ab 100644 --- a/core/frontend/src/views/link/view/index.vue +++ b/core/frontend/src/views/link/view/index.vue @@ -27,6 +27,7 @@ import { queryPanelJumpInfo, queryTargetPanelJumpInfo } from '@/api/panel/linkJu import { getNowCanvasComponentData, panelInit } from '@/components/canvas/utils/utils' import { getOuterParamsInfo } from '@/api/panel/outerParams' import { mapState } from 'vuex' +import {Base64} from "js-base64"; export default { name: 'LinkView', @@ -140,7 +141,7 @@ export default { let attachParam = null if (attachParamsEncode) { const Base64 = require('js-base64').Base64 - attachParam = JSON.parse(decodeURIComponent(Base64.decode(attachParamsEncode))) + attachParam = JSON.parse(Base64.decode(decodeURIComponent(attachParamsEncode))) } if (hasArgs) { attachParam = Object.assign({}, attachParam, argsObject)