From 9344d08f1f68997035904181df1199fcd7c7da9f Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期四, 21 十二月 2023 11:35:53 +0800 Subject: [PATCH] 1.完成下载环信码功能 --- src/api/fysp/userApi.js | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/api/fysp/userApi.js b/src/api/fysp/userApi.js index 838d799..389bf87 100644 --- a/src/api/fysp/userApi.js +++ b/src/api/fysp/userApi.js @@ -19,9 +19,7 @@ * 鑾峰彇鍦烘櫙鐨勭敤鎴疯鎯� */ getUserByScene(sId) { - return $fysp - .get(`userinfo/scene/get?sceneId=${sId}`) - .then((res) => res.data); + return $fysp.get(`userinfo/scene/get?sceneId=${sId}`).then((res) => res.data); }, /** @@ -29,5 +27,5 @@ */ autoCreateAccount(sId) { return $fysp.post(`userinfo/create?sceneId=${sId}`).then((res) => res.data); - }, + } }; -- Gitblit v1.9.3