diff --git a/env/.env.test b/env/.env.test index d9f7529..7157087 100644 --- a/env/.env.test +++ b/env/.env.test @@ -3,6 +3,8 @@ ENV = 'development' VITE_BASE=/ VUE_APP_PREVIEW=false VITE_BASE_API=http://172.16.100.93:8503 +# VITE_BASE_API=http://192.168.88.21:9503 VITE_EPR_BASEURL=http://114.218.158.24:9020 VITE_SOCKET_API=ws://172.16.100.93:8504 +# VITE_SOCKET_API=ws://192.168.88.21:9504 VUE_APP_WEBSITE_NAME="Lumen IM" \ No newline at end of file diff --git a/src/components/group/GroupPanel.vue b/src/components/group/GroupPanel.vue index 717132e..a05357a 100644 --- a/src/components/group/GroupPanel.vue +++ b/src/components/group/GroupPanel.vue @@ -17,7 +17,7 @@ import customModal from '@/components/common/customModal.vue' const userStore = useUserStore() const { showUserInfoModal } = useInject() -const emit = defineEmits(['close', 'to-talk']) +const emit = defineEmits(['close', 'to-talk', 'handleSearchRecordByConditionModalShow']) const props = defineProps({ gid: { type: Number, @@ -200,6 +200,10 @@ const showChatSettingOperateModal = (type: string) => { break } } + +const showSearchRecordByConditionModal = () => { + emit('handleSearchRecordByConditionModalShow', true) +}