du
2025-03-25 97b418553da5db33bfface90fbe78246c96a3a13
easegen-front/src/layout/components/Logo/src/Logo.vue
@@ -59,6 +59,7 @@
<template>
  <div>
    <router-link
      style="padding: 0"
      :class="[
        prefixCls,
        layout !== 'classic' ? `${prefixCls}__Top` : '',
@@ -67,22 +68,22 @@
      to="/"
    >
      <img
        class="h-[calc(var(--logo-height)-10px)] w-[calc(var(--logo-height)-10px)]"
        style="width: 200px;height: 50px;margin-left: -10px"
        src="@/assets/imgs/logo.png"
      />
      <div
        v-if="show"
        :class="[
          'ml-10px text-16px font-700',
          {
            'text-[var(--logo-title-text-color)]': layout === 'classic',
            'text-[var(--top-header-text-color)]':
              layout === 'topLeft' || layout === 'top' || layout === 'cutMenu'
          }
        ]"
      >
        {{ title }}
      </div>
<!--      <div-->
<!--        v-if="show"-->
<!--        :class="[-->
<!--          'ml-10px text-16px font-700',-->
<!--          {-->
<!--            'text-[var(&#45;&#45;logo-title-text-color)]': layout === 'classic',-->
<!--            'text-[var(&#45;&#45;top-header-text-color)]':-->
<!--              layout === 'topLeft' || layout === 'top' || layout === 'cutMenu'-->
<!--          }-->
<!--        ]"-->
<!--      >-->
<!--        {{ title }}-->
<!--      </div>-->
    </router-link>
  </div>
</template>