Ben Lin
2025-03-08 697c405ac874da346e74df40266763370355154d
src/views/sys/login/Login.vue
@@ -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';