浏览代码

【缺陷修复】自己查看自己的分享时移除 shareId

puhui999 8 月之前
父节点
当前提交
25fc972833
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5 5
      sheep/platform/share.js

+ 5 - 5
sheep/platform/share.js

@@ -189,12 +189,12 @@ const bindBrokerageUser = async (val = undefined) => {
     if (!shareId) {
       return;
     }
-    const { data } = await BrokerageApi.bindBrokerageUser({ bindUserId: shareId });
-    if (!data) {
-      return;
-    }
+    const { data, msg } = await BrokerageApi.bindBrokerageUser({ bindUserId: shareId });
     // 绑定成功后清除缓存
-    uni.removeStorageSync('shareId');
+    if (!!data || msg.includes('不能绑定自己')) {
+      uni.removeStorageSync('shareId');
+    }
+
   } catch (e) {
     console.error(e);
   }