浏览代码

判断 客服号

潘超林 5 月之前
父节点
当前提交
373e81446a
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      TUIKit/components/TUIChat/message-list/index.vue

+ 5 - 2
TUIKit/components/TUIChat/message-list/index.vue

@@ -346,9 +346,12 @@ onMounted(() => {
   setInstanceMapping("messageList", thisInstance);
 
   uni.$on("scroll-to-bottom", scrollToLatestMessage);
-  isMerchant();
-});
 
+  let personId = uni.getStorageSync("personId");
+  if (personId != "001") {
+    isMerchant();
+  }
+});
 const goGroup = async () => {
   let id = currentConversationID.value.slice(3);
   let res = await mesApi.default.getByOwnerId(id);