提交 4c35771e authored 作者: lihuihui's avatar lihuihui

新增公路登录

上级 5e7023cb
<template>
<div class="wrapper">
<section class="main">
<div class="main-box">
<div class="logo">
<!-- <a href="https://www.ezijing.com">
<img src="https://zws-imgs-pub.ezijing.com/pc/base/favicon.svg" width="40px" />
</a> -->
</div>
<router-view></router-view>
</div>
<language-switch />
</section>
</div>
</template>
<script>
import languageSwitch from '@/components/languageSwitch.vue'
export default {
components: { languageSwitch }
}
</script>
<style lang="scss" scoped>
.wrapper {
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
// background: url(https://logincdn.msauth.net/shared/1.0/content/images/backgrounds/2_bc3d32a696895f78c19df6c717586a5d.svg);
background-size: cover;
}
.main-box {
width: 450px;
min-height: 500px;
padding: 48px 40px 36px;
margin: 0 auto;
background-color: #fff;
border-radius: 8px;
border: 1px solid #dadce0;
box-sizing: border-box;
color: #1655b2;
}
.logo {
text-align: center;
padding-bottom: 16px;
}
.footer {
padding: 20px 10px;
.t1 {
text-align: right;
color: #d3d3d3;
}
}
::v-deep .title {
font-weight: normal;
text-align: center;
font-size: 20px;
color: #353535;
margin-bottom: 24px;
}
@media (max-width: 768px) {
.wrapper {
display: block;
}
.main {
padding: 20px;
}
.main-box {
width: 100%;
min-height: calc(100vh - 100px);
border: 0;
padding: 0;
}
}
::v-deep .language-switch {
margin: 10px 0;
width: 80px;
.el-input__inner {
border: none;
padding-left: 0;
}
.el-select .el-input .el-select__caret {
color: #606266;
}
}
</style>
<template>
<div class="login">
<!-- <h1 class="title">{{ $t('main.title') }}</h1> -->
<img class="logo-title" src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/highway/h5/login_logo.png" />
<div class="login-box">
<router-view @success="handleSuccess"></router-view>
</div>
<p class="footer" @click="$router.push({ path: '../register', query: $route.query })">{{ $t('login.register') }}</p>
</div>
</template>
<script>
export default {
methods: {
handleSuccess() {
const url = document.referrer
const index = url.lastIndexOf('/')
window.location.href = url.substring(0, index)
}
}
}
</script>
<style lang="scss" scoped>
::v-deep {
.el-button--primary {
// --main-color: #1655b2 !important;
background-color: #1655b2;
border-color: #1655b2;
}
}
.footer {
margin-top: 30px;
clear: both;
color: #000;
line-height: 52px;
cursor: pointer;
}
.logo-title {
width: 80%;
margin: 60px auto;
display: block;
}
</style>
<template>
<div class="password">
<h1 class="title">{{ $t('password.title') }}</h1>
<router-view></router-view>
<p class="back" @click="$router.push({ path: 'login', query: $route.query })">{{ $t('password.backText') }}</p>
</div>
</template>
<style lang="scss" scoped>
.back {
margin-top: 10px;
color: #1655b2;
line-height: 52px;
cursor: pointer;
}
::v-deep {
.el-button--primary {
// --main-color: #1655b2 !important;
background-color: #1655b2;
border-color: #1655b2;
}
}
</style>
<template>
<div class="register">
<h1 class="title">{{ $t('main.register') }}</h1>
<router-view></router-view>
<p class="back" @click="$router.push({ path: 'login', query: $route.query })">{{ $t('password.backText') }}</p>
</div>
</template>
<style lang="scss" scoped>
.back {
margin-top: 10px;
color: #1655b2;
line-height: 52px;
cursor: pointer;
}
::v-deep {
.el-button--primary {
// --main-color: #1655b2 !important;
background-color: #1655b2;
border-color: #1655b2;
}
}
</style>
...@@ -59,6 +59,33 @@ export default [ ...@@ -59,6 +59,33 @@ export default [
} }
] ]
}, },
// highway
{
path: '/highway-plus',
component: () => import(/* webpackChunkName: "highway" */ '../pages/highway-plus/components/layout.vue'),
children: [
{ path: '', redirect: 'login/index' },
{
path: 'login',
component: () => import(/* webpackChunkName: "highway" */ '../pages/highway-plus/login.vue'),
children: [
{ path: '', redirect: 'index' },
{ path: 'index', component: loginAccount },
{ path: 'code', component: loginCode }
]
},
{
path: 'password',
component: () => import(/* webpackChunkName: "highway" */ '../pages/highway-plus/password.vue'),
children: [{ path: '', component: password }]
},
{
path: 'register',
component: () => import(/* webpackChunkName: "highway" */ '../pages/highway-plus/register.vue'),
children: [{ path: '', component: register }]
}
]
},
// sofia // sofia
{ {
path: '/sofia', path: '/sofia',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论