riku
2024-04-25 743044407e35a10ff824ef18cb883ac2b66e2d12
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);
  },
  }
};