TheLogo.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <script setup>
  2. import { useRouter } from "vue-router";
  3. import { storeToRefs } from 'pinia';
  4. import { useAppStore } from '@/stores/modules/appStore';
  5. import SvgIcon from '@/components/SvgIcon';
  6. import BasePopover from "@/components/BasePopover"
  7. const appStore = useAppStore();
  8. const { subMenuCollapse } = storeToRefs(appStore);
  9. const router = useRouter();
  10. const changeCollapse = () => appStore.toggleSubMenuCollapse();
  11. const handleClick = () => router.push('/');
  12. </script>
  13. <template>
  14. <div class="logo-main flex items-center justify-between py-[14px] px-[20px]">
  15. <div class="title flex items-center space-x-2 cursor-pointer" @click="handleClick">
  16. <div class="w-[28px] h-[28px]">
  17. <SvgIcon name="common-logo" size="28"></SvgIcon>
  18. </div>
  19. <span class="block w-[82px] font-[10px] text-left">人工智能运营体<br>锡林浩特水务集团</span>
  20. </div>
  21. <!-- 图标 -->
  22. <div class="icon-group flex items-center justify-center" @click="changeCollapse" v-show="!subMenuCollapse">
  23. <BasePopover placement="right" content="历史记录">
  24. <SvgIcon class="cursor-pointer" name="tool-arrow-history" size="20"></SvgIcon>
  25. </BasePopover>
  26. </div>
  27. </div>
  28. </template>
  29. <style scoped lang="scss">
  30. .logo-main {
  31. font-family: AlimamaShuHeiTi;
  32. .title {
  33. font-size: 10px;
  34. line-height: 12px;
  35. }
  36. .icon-group {
  37. width: 24px;
  38. height: 24px;
  39. border-radius: 6px;
  40. color: #4F5866;
  41. &:hover {
  42. color: #2454FF;
  43. background: #fff;
  44. }
  45. }
  46. }
  47. </style>