修改登录界面

new-map
H 2022-11-11 10:46:50 +08:00
parent a87d4290bf
commit ffb6b24162
2 changed files with 4 additions and 5 deletions

View File

@ -4,10 +4,10 @@
--> -->
<template> <template>
<div class="anticon" :class="getAppLogoClass" @click="goHome"> <div class="anticon" :class="getAppLogoClass" @click="goHome">
<!-- <img src="../../../assets/images/logo.png" /> <img src="../../../assets/images/logo.png" />
<div class="ml-2 truncate md:opacity-100" :class="getTitleClass" v-show="showTitle"> <div class="ml-2 truncate md:opacity-100" :class="getTitleClass" v-show="showTitle">
{{ title }} {{ title }}
</div> --> </div>
</div> </div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>

View File

@ -24,7 +24,7 @@
class="w-1/2 -mt-16 -enter-x" class="w-1/2 -mt-16 -enter-x"
/> />
<div class="mt-10 font-medium text-white -enter-x"> <div class="mt-10 font-medium text-white -enter-x">
<span class="inline-block mt-4 text-4xl"> 隆昌农业大数据监控平台</span> <span class="inline-block mt-4 text-4xl"> {{ title }}</span>
</div> </div>
<!-- <div class="mt-10 font-medium text-white -enter-x"> <!-- <div class="mt-10 font-medium text-white -enter-x">
<span class="inline-block mt-4 text-3xl"> {{ t('sys.login.signInTitle') }}</span> <span class="inline-block mt-4 text-3xl"> {{ t('sys.login.signInTitle') }}</span>
@ -52,7 +52,7 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { computed } from 'vue' import { computed } from 'vue'
import { AppLogo } from '/@/components/Application' // import { AppLogo } from '/@/components/Application'
import { AppLocalePicker, AppDarkModeToggle } from '/@/components/Application' import { AppLocalePicker, AppDarkModeToggle } from '/@/components/Application'
import LoginForm from './LoginForm.vue' import LoginForm from './LoginForm.vue'
import ForgetPasswordForm from './ForgetPasswordForm.vue' import ForgetPasswordForm from './ForgetPasswordForm.vue'
@ -69,7 +69,6 @@
type: Boolean, type: Boolean,
}, },
}) })
const globSetting = useGlobSetting() const globSetting = useGlobSetting()
const { prefixCls } = useDesign('login') const { prefixCls } = useDesign('login')
const { t } = useI18n() const { t } = useI18n()