-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0021da4
commit 7165367
Showing
11 changed files
with
261 additions
and
66 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,87 @@ | ||
<template> | ||
<div></div> | ||
<div class="_full-container"> | ||
<div class="_full-content"> | ||
<!-- 背景图片 --> | ||
<div class="background-image"></div> | ||
<!-- 语言按钮 --> | ||
<a href="javascript:;" class="language" @click="skipToLanguageList" | ||
>中文简体</a | ||
> | ||
|
||
<div class="login-register"> | ||
<!-- 登陆按钮 --> | ||
<a href="javascript:;" class="mh-btn mh-btn_primary login">登录</a> | ||
<!-- 注册按钮 --> | ||
<a href="javascript:;" class="mh-btn mh-btn_primary register">注册</a> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
// 用户第一次使用微信时的登陆界面 | ||
// 用户第一次使用微信时的登陆界面 [登陆/注册] | ||
export default { | ||
name: "login", | ||
data() { | ||
return {}; | ||
}, | ||
methods: { | ||
skipToLanguageList() { | ||
this.$router.push({ | ||
name: "LanguagePicker", | ||
params: { | ||
language: "简体中文" | ||
} | ||
}); | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
<style scoped></style> | ||
<style scoped> | ||
.background-image { | ||
width: 100%; | ||
height: 100%; | ||
background-image: url("~@/assets/images/login/BootImage_375x667.png"); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: contain; | ||
} | ||
.language { | ||
position: absolute; | ||
color: rgba(255, 255, 255, 0.7); | ||
top: 20px; | ||
right: 20px; | ||
display: block; | ||
font-size: 12px; | ||
text-align: right; | ||
} | ||
.login-register { | ||
position: absolute; | ||
left: 20px; | ||
right: 20px; | ||
bottom: 20px; | ||
display: -webkit-box; | ||
display: -webkit-flex; | ||
display: flex; | ||
} | ||
.login, | ||
.register { | ||
-webkit-box-flex: 1; | ||
-webkit-flex: 1; | ||
flex: 1; | ||
height: 44px; | ||
} | ||
.login { | ||
margin-right: 10px; | ||
background-color: #fff; | ||
color: #57be6a; | ||
} | ||
.register { | ||
margin-left: 10px; | ||
} | ||
</style> |
Oops, something went wrong.