yangyin
2024-10-28 be0b1a911b5e36faf8bcc61c452520e97f00cd16
src/stores/chatRoom.ts
@@ -49,12 +49,14 @@
export const activeChatRoom = computed(() => chatRoomList.value?.find((item) => item.id === activeRoomId.value));
export const activeSampleId = ref(null);
export const activeSectionAId = ref(null);
export const topGroupId = ref(null);
export const activeLLMId = ref(null);
/** @description 当前聊天室 groupType */
export const activeGroupType = computed({
   get: () => {
      const result = getRoomConfig(activeRoomId.value, 'activeGroupType');
      const result = getRoomConfig(activeRoomId.value, 'activeGroupType') ??'业务场景';
      return result;
   },
   set: (value) => {
@@ -87,7 +89,7 @@
 */
export const getAllData = async () => {
   getSceneGroupList();
};
//#endregion