From 6eb541dd144ff9743d1a428547358b806ef64605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=B6=E5=90=AF=E9=BE=99?= Date: Fri, 23 Aug 2024 15:09:06 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=80=80=E5=87=BA=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E6=9A=82=E6=97=B6=E5=81=9C=E6=AD=A2=20ukey=E8=B0=83=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/ukey.js | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/store/modules/ukey.js b/src/store/modules/ukey.js index d5f5df7..3029b5d 100644 --- a/src/store/modules/ukey.js +++ b/src/store/modules/ukey.js @@ -66,16 +66,19 @@ const actions = { // 退出系统 Logout() { return new Promise((resolve, reject) => { + resolve({ + success: true + }) // 调用天融信单点退出系统 - offlineToken().then( - res => { - console.log('调用天融信单点退出系统', res) - resolve(res) - }, - err => { - reject(err) - } - ) + // offlineToken().then( + // res => { + // console.log('调用天融信单点退出系统', res) + // resolve(res) + // }, + // err => { + // reject(err) + // } + // ) }) } }