Whalebird-desktop-client-ma.../src/renderer/components/Login.vue

64 lines
1.1 KiB
Vue
Raw Normal View History

2018-03-08 09:41:39 +01:00
<template>
<el-container id="login">
<el-header>
<el-row>
<el-col :span="24" class="close">
<el-button type="text" icon="el-icon-close" @click="close" class="close-button">
</el-button>
</el-col>
</el-row>
</el-header>
<el-container>
<login-form></login-form>
</el-container>
</el-container>
2018-03-08 09:41:39 +01:00
</template>
<script>
2018-03-10 14:44:15 +01:00
import LoginForm from './Login/LoginForm'
2018-03-08 15:08:33 +01:00
import { mapState } from 'vuex'
2018-03-08 09:41:39 +01:00
export default {
name: 'login',
2018-03-22 02:46:17 +01:00
components: { LoginForm },
2018-03-08 15:08:33 +01:00
computed: {
...mapState({
2018-03-10 14:44:15 +01:00
page: state => state.Login.page
2018-03-08 15:08:33 +01:00
})
},
methods: {
close () {
2018-03-22 02:46:17 +01:00
this.$store.dispatch('Login/pageBack')
return this.$router.push({ path: '/' })
}
}
2018-03-08 09:41:39 +01:00
}
</script>
<style lang="scss" scoped>
#login /deep/ {
2018-03-10 14:44:15 +01:00
background-color: #292f3f;
color: #ffffff;
2018-03-08 09:41:39 +01:00
text-align: center;
2018-03-14 08:12:44 +01:00
min-height: 100%;
2018-03-08 15:08:33 +01:00
.close {
text-align: right;
.close-button {
font-size: 24px;
}
}
2018-03-10 14:44:15 +01:00
.el-form-item__label {
color: #f0f3f9;
}
.el-input__inner {
background-color: #373d48;
color: #ffffff;
border: 0;
2018-03-08 15:08:33 +01:00
}
2018-03-08 09:41:39 +01:00
}
</style>