初始化

This commit is contained in:
zpc 2025-07-30 11:29:44 +08:00
parent 049828db85
commit d402e28cd4
3 changed files with 8 additions and 8 deletions

2
.env
View File

@ -1,3 +1,3 @@
# 页面标题 # 页面标题
VITE_APP_TITLE = 'ZRAdmin.NET' VITE_APP_TITLE = '后台管理'

View File

@ -55,7 +55,7 @@ export default {
/** /**
* 版权信息 * 版权信息
*/ */
copyright: 'Copyright ©2024 <a target="_black" href="http://www.izhaorui.cn">ZRAdmin.NET</a> All Rights Reserved.', copyright: '',//Copyright ©2024 <a target="_black" href="http://www.izhaorui.cn">ZRAdmin.NET</a> All Rights Reserved.
/** /**
* 是否显示底部栏 * 是否显示底部栏
*/ */
@ -71,7 +71,7 @@ export default {
/** /**
* 是否显示其他登录 * 是否显示其他登录
*/ */
showOtherLogin: true, showOtherLogin: false,
/** /**
* 默认大小 * 默认大小
*/ */
@ -87,11 +87,11 @@ export default {
/** /**
* 是否显示QR登录 * 是否显示QR登录
*/ */
showQrLogin: true, showQrLogin: false,
/** /**
* 是否显示手机号登录 * 是否显示手机号登录
*/ */
showPhoneLogin: true, showPhoneLogin: false,
/** /**
* 标签页持久化 * 标签页持久化
*/ */

View File

@ -56,12 +56,12 @@
<div style="display: flex; justify-content: space-between; align-items: center"> <div style="display: flex; justify-content: space-between; align-items: center">
<el-checkbox v-model="loginForm.rememberMe">{{ $t('login.rememberMe') }}</el-checkbox> <el-checkbox v-model="loginForm.rememberMe">{{ $t('login.rememberMe') }}</el-checkbox>
<span style="font-size: 12px"> <span style="font-size: 12px">
<router-link class="link-type" :to="'/register'">{{ $t('login.register') }}</router-link> <!-- <router-link class="link-type" :to="'/register'">{{ $t('login.register') }}</router-link> -->
<span @click="handleForgetPwd()" class="forget-pwd">{{ $t('login.forgotPwd') }}</span> <span @click="handleForgetPwd()" class="forget-pwd">{{ $t('login.forgotPwd') }}</span>
</span> </span>
</div> </div>
</el-form> </el-form>
<div style="height: 10px; width: 100%"></div>
<qrLogin ref="qrLoginRef" v-if="loginType == 3"></qrLogin> <qrLogin ref="qrLoginRef" v-if="loginType == 3"></qrLogin>
<phoneLogin v-if="loginType == 2"></phoneLogin> <phoneLogin v-if="loginType == 2"></phoneLogin>
<oauthLogin v-if="defaultSettings.showOtherLogin"></oauthLogin> <oauthLogin v-if="defaultSettings.showOtherLogin"></oauthLogin>
@ -233,7 +233,7 @@ getCookie()
color: #ccc; color: #ccc;
margin-left: 10px; margin-left: 10px;
cursor: pointer; cursor: pointer;
border-left: 1px solid; border-left: 0px solid;
padding-left: 10px; padding-left: 10px;
} }
.qrCode { .qrCode {