riku
2023-12-21 9344d08f1f68997035904181df1199fcd7c7da9f
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);
  },
  }
};