| | |
| | | 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('未来可见 数字化智造平台') }} |
| | |
| | | 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'; |
| | |
| | | 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'; |