From d583ee91ff627890ce0a2a1055dcdc394d2391e2 Mon Sep 17 00:00:00 2001 From: xuefei <564615061@qq.cm> Date: 星期四, 04 五月 2023 09:55:18 +0800 Subject: [PATCH] 登录密码验证base64加密 --- src/views/activiti/model-manage/modelManage.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/activiti/model-manage/modelManage.vue b/src/views/activiti/model-manage/modelManage.vue index f3e6074..2b86520 100644 --- a/src/views/activiti/model-manage/modelManage.vue +++ b/src/views/activiti/model-manage/modelManage.vue @@ -424,7 +424,7 @@ } this.modelerUrl = `${this.domain}/modeler/modeler.html?modelId=${ v.id - }&accessToken=${this.getStore("accessToken")}&time=${new Date()}`; + }&accessToken=${this.getSessionStore("accessToken")}&time=${new Date()}`; this.showModeler = true; this.modelerLoading = true; let that = this; @@ -491,7 +491,7 @@ }, export(v) { window.open( - exportModel + v.id + "?accessToken=" + this.getStore("accessToken") + exportModel + v.id + "?accessToken=" + this.getSessionStore("accessToken") ); }, remove(v) { @@ -556,4 +556,4 @@ }, }, }; -</script> \ No newline at end of file +</script> -- Gitblit v1.9.1