猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.1 KiB

9 months ago
8 months ago
9 months ago
  1. <template>
  2. <div class="sidebar-logo-container" :class="{'collapse':collapse}" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }">
  3. <transition name="sidebarLogoFade">
  4. <router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="/">
  5. <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1>
  6. </router-link>
  7. <router-link v-else key="expand" class="sidebar-logo-link" to="/">
  8. <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1>
  9. </router-link>
  10. </transition>
  11. </div>
  12. </template>
  13. <script>
  14. import logoImg from '@/assets/logo/logo.png'
  15. import variables from '@/assets/styles/variables.scss'
  16. export default {
  17. name: 'SidebarLogo',
  18. props: {
  19. collapse: {
  20. type: Boolean,
  21. required: true
  22. }
  23. },
  24. computed: {
  25. variables() {
  26. return variables;
  27. },
  28. sideTheme() {
  29. return this.$store.state.settings.sideTheme
  30. }
  31. },
  32. data() {
  33. return {
  34. title: '下单伴宠师综合管理平台',
  35. logo: logoImg
  36. }
  37. }
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .sidebarLogoFade-enter-active {
  42. transition: opacity 1.5s;
  43. }
  44. .sidebarLogoFade-enter,
  45. .sidebarLogoFade-leave-to {
  46. opacity: 0;
  47. }
  48. .sidebar-logo-container {
  49. position: relative;
  50. width: 100%;
  51. height: 50px;
  52. line-height: 50px;
  53. background: #2b2f3a;
  54. text-align: center;
  55. overflow: hidden;
  56. & .sidebar-logo-link {
  57. height: 100%;
  58. width: 100%;
  59. & .sidebar-logo {
  60. width: 32px;
  61. height: 32px;
  62. vertical-align: middle;
  63. margin-right: 12px;
  64. }
  65. & .sidebar-title {
  66. display: inline-block;
  67. margin: 0;
  68. color: #fff;
  69. font-weight: 600;
  70. line-height: 50px;
  71. font-size: 14px;
  72. font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
  73. vertical-align: middle;
  74. }
  75. }
  76. &.collapse {
  77. .sidebar-logo {
  78. margin-right: 0px;
  79. }
  80. }
  81. }
  82. </style>