From d78bd55b2be41076c579595127a7aaf84341ede4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E9=B9=8F?= Date: Thu, 12 Dec 2024 09:10:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=9F=E5=AE=A2=E9=92=A5=E5=8C=99?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E4=B8=8D=E8=B6=B36=E5=B0=8F=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E7=A6=81=E6=AD=A2=E8=8E=B7=E5=8F=96=E5=8D=95=E6=AC=A1?= =?UTF-8?q?=E9=92=A5=E5=8C=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- starCloud.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/starCloud.js b/starCloud.js index e698068..2b732b6 100644 --- a/starCloud.js +++ b/starCloud.js @@ -1180,13 +1180,12 @@ export const useStarCloudStore = defineStore('starCloud', { } const { code, data, message } = await getLockSettingDataRequest({ - lockId: lockId + lockId }) if (code === Result.Success.code) { return new Result(code, { ...data.lockFeature }, message) - } else { - return new Result(code, data, message) } + return new Result(code, data, message) }, /** @@ -1301,7 +1300,6 @@ export const useStarCloudStore = defineStore('starCloud', { setStorage('starCloudToken', this.accountInfo.token) - this.getServerTimestamp().then(() => {}) return Result.Success }