|
@@ -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);
|