Ben Lin
2024-07-20 eed29804d3973801f8eac3ad9bead1e608f05b6a
src/views/sys/login/Login.vue
@@ -9,7 +9,7 @@
      />
    </div>
    <span class="-enter-x xl:hidden">
    <span class="mt-5 -enter-x xl:hidden">
      <LoginLogo :alwaysShowTitle="false" />
    </span>
@@ -24,7 +24,8 @@
              class="w-1/2 -mt-16 -enter-x"
            /> -->
            <div class="mt-10 font-medium text-white -enter-x">
              <span class="inline-block mt-4 text-3xl"> {{ t('鸿鹄智能智造MES系统') }}</span>
              <span v-if="!IsMes" class="inline-block mt-4 text-3xl"> {{ t('鸿鹄智能智造WMS系统') }}</span>
              <span v-if="IsMes" class="inline-block mt-4 text-3xl"> {{ t('鸿鹄智能智造MES系统') }}</span>
            </div>
            <div class="mt-5 font-normal text-white dark:text-gray-500 -enter-x">
              {{ t('未来可见 数字化智造平台') }}
@@ -53,7 +54,7 @@
  import { useDesign } from '@/hooks/web/useDesign';
  import { useI18n } from '@/hooks/web/useI18n';
  import { useLocaleStore } from '@/store/modules/locale';
  import { computed } from 'vue';
  import { computed, ref } from 'vue';
  import ForgetPasswordForm from './ForgetPasswordForm.vue';
  import LoginForm from './LoginForm.vue';
  import MobileForm from './MobileForm.vue';
@@ -72,6 +73,7 @@
  const localeStore = useLocaleStore();
  const showLocale = localeStore.getShowPicker;
  const title = computed(() => globSetting?.title ?? '');
  const IsMes = ref(globSetting.systemType == 'MES');
</script>
<style lang="less">
  @prefix-cls: ~'@{namespace}-login';