使用Vue寫一個登入頁面
上一部落格講到構建了一個vue專案,現在在那個專案之上實現一個登入頁面。
1.構建專案的目錄
2.App.vue
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
main.js
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
//自己寫的樣式
import './style/theme.css'
import './style/characters.css'
// 註冊element-ui
Vue.use(ElementUI)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})
theme.css
body {
padding: 0;
margin:0;
font-family: "Microsoft YaHei UI Light";
}
.outer_label {
position: relative;
left: 0;
top: 0;
width: 100%;
height: 220px;
background: -webkit-linear-gradient(left, #000099, #2154FA); /* Safari 5.1 - 6.0 */
background: -o-linear-gradient(right, #000099, #2154FA); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(right, #000099, #2154FA); /* Firefox 3.6 - 15 */
background: linear-gradient(to right, #000099 , #2154FA); /* 標準的語法 */
/*background-color: #000099;*/
text-align: center;
filter: brightness(1.4);
}
.inner_label {
position: absolute;
left:0;
right: 0;
bottom: 0;
top:0;
margin: auto;
height: 50px;
}
.qxs-icon {
height: 40px;
width: 90%;
margin-bottom: 5px;
padding-left: 10%;
border: 0;
border-bottom: solid 1px lavender;
}
character.css
.text-size12px{
font-size: 12px;
}
.text-size14px{
font-size: 14px;
}
.text-size16px{
font-size: 16px;
}
.float-right {
float: right;
}
.item-color {
color: #848487;
}
index.js
import Vue from 'vue'
import Router from 'vue-router'
// import HelloWorld from '@/components/HelloWorld'
import Login from '@/components/login/Login'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Login',
component: Login
}
]
})
Login.vue
<template>
<div>
<div class="outer_label">
<img class="inner_label login_logo" src="../../assets/logo.png">
</div>
<div class="login_form">
<input type="text" class="qxs-ic_user qxs-icon" placeholder="使用者名稱" v-model="userName">
<input type="text" class="qxs-ic_password qxs-icon" placeholder="密碼" v-model="password">
<!--<button class="login_btn el-button el-button--primary is-round" type="primary" round>登入</button>-->
<el-button class="login_btn" @click.native="login" type="primary" round :loading="isBtnLoading">登入</el-button>
<div style="margin-top: 10px">
<span style="color: #000099;" @click="login">司機賬號登陸</span><span style="float: right;color: #A9A9AB">忘記密碼?</span>
</div>
</div>
</div>
</template>
<script>
// import { userLogin } from '../../api/api';
export default {
data() {
return {
userName: '',
password: '',
isBtnLoading: false
}
},
created () {
if(JSON.parse( localStorage.getItem('user')) && JSON.parse( localStorage.getItem('user')).userName){
this.userName = JSON.parse( localStorage.getItem('user')).userName;
this.password = JSON.parse( localStorage.getItem('user')).password;
}
},
computed: {
btnText() {
if (this.isBtnLoading) return '登入中...';
return '登入';
}
},
methods: {
login() {
if (!this.userName) {
this.$message.error('請輸入使用者名稱');
return;
}
if (!this.password) {
this.$message.error('請輸入密碼');
return;
}
}
}
}
</script>
<style>
.login_form {
padding-top: 10%;
padding-left: 10%;
padding-right: 10%;
}
.qxs-ic_user {
background: url("../../assets/login/ic_user.png") no-repeat;
background-size: 13px 15px;
background-position: 3%;
}
.qxs-ic_password {
background: url("../../assets/login/ic_password.png") no-repeat;
background-size: 13px 15px;
background-position: 3%;
margin-bottom: 20px;
}
.login_logo {
height: 100%;
}
.login_btn {
width: 100%;
font-size: 16px;
background: -webkit-linear-gradient(left, #000099, #2154FA); /* Safari 5.1 - 6.0 */
background: -o-linear-gradient(right, #000099, #2154FA); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(right, #000099, #2154FA); /* Firefox 3.6 - 15 */
background: linear-gradient(to right, #000099 , #2154FA); /* 標準的語法 */
filter: brightness(1.4);
}
</style>
ic_password.png
ic_user.png
logo.png
3.根據npm run dev 命令啟動,啟動完成之後會有個連結,訪問連結就直接可以看到下面頁面:
問題交流群,不定期分享各種技術文件:
QQ群號:464512055
群二維碼:
這是一個神器的二維碼,掃描之後你會少掉一塊錢。
相關文章
- 用FishRedux完成一個登入頁面Redux
- 使用Vue.js和Element-UI做一個簡單的登入頁面Vue.jsUI
- Vue+Element-ui建立一個登陸頁面VueUI
- 登入頁面使用ReactiveCocoaReact
- 分享一個登入頁面基於Tailwind CSSAICSS
- Asp.net 2.0 用Membership自己寫登入頁面ASP.NET
- 直播原始碼網站,新使用者登入時的註冊頁面和登入頁面原始碼網站
- Vue-router實現單頁面應用在沒有登入情況下,自動跳轉到登入頁面Vue
- Vue(二)使用Element-ui元件庫渲染後臺系統登入頁面VueUI元件
- Vue.js實現一個SPA登入頁面的過程Vue.js
- Flutter 入門與實戰(九):開發一個常用的登入頁面Flutter
- 簡單的網頁登入頁面網頁
- javaWeb登入註冊頁面JavaWeb
- jquery登入頁面效果圖jQuery
- Flutter關於一個登入頁Flutter
- 如何使用 vue + typescript 編寫頁面 (Vue生命週期函式)VueTypeScript函式
- 用SwiftUI寫一個簡單頁面SwiftUI
- 用Flutter 寫一個簡單頁面Flutter
- 面向Vue新人:用Vue寫一個分頁器Vue
- 做一個php登陸頁面,用pc登陸和用手機登陸彈出來的登陸頁面不一樣。PHP
- 自定義登入和登出頁面
- 教你如何寫第一個jsp頁面JS
- 如何使用 vue + typescript 編寫頁面 (typescript進階-相容篇)VueTypeScript
- 如何使用 vue + typescript 編寫頁面 ( vuex裝飾器部分 )VueTypeScript
- “登入”功能有哪些測試點?1000個登入頁面問題分析!
- Vue學習:實現使用者沒有登陸時,訪問後自動跳轉登入頁面Vue
- Luffy /4/ 多方式登入介面&登入註冊前端頁面前端
- 遠端無法登入管理頁面
- bootstrap4登入註冊頁面boot
- 使用VUE分分鐘寫一個驗證碼輸入元件Vue元件
- 寫一個方法判斷頁面滾動方向
- Flutter 從當前頁面進入一個新的頁面並返回Flutter
- 如何使用 vue + typescript 編寫頁面 (typescript簡單語法篇)VueTypeScript
- 如何使用 vue + typescript 編寫頁面 ( 基礎裝飾器部分 )VueTypeScript
- ubuntu16.04登入後黑屏再次回到登入頁面Ubuntu
- 一個超級簡單易懂的使用者登入網頁網頁
- vue——一個頁面實現音樂播放器Vue播放器
- 如何將一個.html匯入進另一個.html頁面?HTML