| | |
| | | <div class="flex items-center flex-column mt-20"> |
| | | <div class="flex items-center flex-column"> |
| | | <waterTop /> |
| | | <waterCenter /> |
| | | <waterBottom /> |
| | | <div v-if="isLoginStatus"> |
| | | <waterCenter /> |
| | | <waterBottom /> |
| | | </div> |
| | | <div v-else> |
| | | <el-empty></el-empty> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { ref } from 'vue'; |
| | | import waterBottom from './component/waterRight/bottom.vue'; |
| | | import waterCenter from './component/waterRight/center.vue'; |
| | | import waterTop from './component/waterRight/top.vue'; |
| | | import { accessSessionKey } from '/@/utils/request'; |
| | | import { Local } from '/@/utils/storage'; |
| | | const isLoginStatus = ref(!!Local.get(accessSessionKey)); |
| | | </script> |
| | | <style scoped lang="scss"> |
| | | .pc-chat_room { |
| | | |
| | | |
| | | margin: 0; |
| | | padding: 0; |
| | | // overflow: hidden; |
| | | // -webkit-box-sizing: border-box; |
| | | // box-sizing: border-box; |
| | | // background-color: #1c1e1d; |
| | | // font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; |
| | | } |
| | | .pc-chat_aside { |
| | | width: 252px !important; |
| | |
| | | background-color: #f2f4f8; |
| | | transition: padding-right 0.25s; |
| | | .homeBox { |
| | | |
| | | font-size: 14px; |
| | | line-height: 18px; |
| | | overflow-y: auto; |