You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
221 lines
6.7 KiB
221 lines
6.7 KiB
7 years ago
|
<template>
|
||
|
<div class="container">
|
||
|
<div class="content">
|
||
|
<div class="top">
|
||
|
<div class="header">
|
||
|
<img alt="logo" class="logo" src="static/img/vue-antd-logo.png" />
|
||
7 years ago
|
<span class="title">{{systemName}}</span>
|
||
7 years ago
|
</div>
|
||
7 years ago
|
<div class="desc">Ant Design 是西湖区最具影响力的 Web 设计规范</div>
|
||
7 years ago
|
</div>
|
||
|
<div class="login">
|
||
7 years ago
|
<a-form @submit="onSubmit" :autoFormCreate="(form) => this.form = form">
|
||
7 years ago
|
<a-tabs size="large" :tabBarStyle="{textAlign: 'center'}" style="padding: 0 2px;">
|
||
7 years ago
|
<a-tab-pane tab="账户密码登录" key="1">
|
||
7 years ago
|
<a-alert type="error" :closable="true" v-show="error" :message="error" showIcon style="margin-bottom: 24px;" />
|
||
|
<a-form-item
|
||
|
fieldDecoratorId="name"
|
||
|
:fieldDecoratorOptions="{rules: [{ required: true, message: '请输入账户名', whitespace: true}]}"
|
||
|
>
|
||
|
<a-input size="large" placeholder="admin" >
|
||
7 years ago
|
<a-icon slot="prefix" type="user" />
|
||
|
</a-input>
|
||
|
</a-form-item>
|
||
7 years ago
|
<a-form-item
|
||
|
fieldDecoratorId="password"
|
||
|
:fieldDecoratorOptions="{rules: [{ required: true, message: '请输入密码', whitespace: true}]}"
|
||
|
>
|
||
|
<a-input size="large" placeholder="888888" type="password">
|
||
7 years ago
|
<a-icon slot="prefix" type="lock" />
|
||
|
</a-input>
|
||
|
</a-form-item>
|
||
|
</a-tab-pane>
|
||
|
<a-tab-pane tab="手机号登录" key="2">
|
||
|
<a-form-item>
|
||
|
<a-input size="large" placeholder="mobile number" >
|
||
|
<a-icon slot="prefix" type="mobile" />
|
||
|
</a-input>
|
||
|
</a-form-item>
|
||
|
<a-form-item>
|
||
7 years ago
|
<a-row :gutter="8" style="margin: 0 -4px">
|
||
7 years ago
|
<a-col :span="16">
|
||
|
<a-input size="large" placeholder="captcha">
|
||
|
<a-icon slot="prefix" type="mail" />
|
||
|
</a-input>
|
||
|
</a-col>
|
||
|
<a-col :span="8" style="padding-left: 4px">
|
||
7 years ago
|
<a-button style="width: 100%" class="captcha-button" size="large">获取验证码</a-button>
|
||
7 years ago
|
</a-col>
|
||
|
</a-row>
|
||
|
</a-form-item>
|
||
|
</a-tab-pane>
|
||
|
</a-tabs>
|
||
|
<div>
|
||
|
<a-checkbox :checked="true" >自动登录</a-checkbox>
|
||
|
<a style="float: right">忘记密码</a>
|
||
|
</div>
|
||
|
<a-form-item>
|
||
7 years ago
|
<a-button :loading="logging" style="width: 100%;margin-top: 24px" size="large" htmlType="submit" type="primary">登录</a-button>
|
||
7 years ago
|
</a-form-item>
|
||
|
<div>
|
||
|
其他登录方式
|
||
|
<a-icon class="icon" type="alipay-circle" />
|
||
|
<a-icon class="icon" type="taobao-circle" />
|
||
|
<a-icon class="icon" type="weibo-circle" />
|
||
7 years ago
|
<router-link style="float: right" to="/dashboard/workplace" >注册账户</router-link>
|
||
7 years ago
|
</div>
|
||
|
</a-form>
|
||
|
</div>
|
||
|
</div>
|
||
7 years ago
|
<global-footer :link-list="linkList" :copyright="copyright" />
|
||
7 years ago
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
7 years ago
|
import AForm from 'ant-design-vue/es/form/Form'
|
||
|
import ATabs from 'ant-design-vue/es/tabs'
|
||
7 years ago
|
import GlobalFooter from '../../layouts/GlobalFooter'
|
||
7 years ago
|
import AFormItem from 'ant-design-vue/es/form/FormItem'
|
||
|
import AInput from 'ant-design-vue/es/input/Input'
|
||
|
import AIcon from 'ant-design-vue/es/icon/icon'
|
||
|
import AInputGroup from 'ant-design-vue/es/input/Group'
|
||
|
import AButton from 'ant-design-vue/es/button/button'
|
||
|
import ACol from 'ant-design-vue/es/grid/Col'
|
||
7 years ago
|
import ARow from 'ant-design-vue/es/grid/Row'
|
||
7 years ago
|
import ACheckbox from 'ant-design-vue/es/checkbox/Checkbox'
|
||
|
import AAlert from 'ant-design-vue/es/alert/index'
|
||
7 years ago
|
|
||
|
const ATabPane = ATabs.TabPane
|
||
|
|
||
|
export default {
|
||
|
name: 'Login',
|
||
7 years ago
|
components: {
|
||
|
AAlert,
|
||
|
ACheckbox,
|
||
|
ACol,
|
||
7 years ago
|
ARow,
|
||
7 years ago
|
AButton,
|
||
|
AInputGroup,
|
||
|
AIcon,
|
||
|
AInput,
|
||
|
AFormItem,
|
||
7 years ago
|
GlobalFooter,
|
||
7 years ago
|
ATabPane,
|
||
|
ATabs,
|
||
|
AForm},
|
||
|
data () {
|
||
|
return {
|
||
|
logging: false,
|
||
|
error: ''
|
||
|
}
|
||
|
},
|
||
7 years ago
|
computed: {
|
||
|
systemName () {
|
||
|
return this.$store.state.setting.systemName
|
||
7 years ago
|
},
|
||
|
linkList () {
|
||
|
return this.$store.state.setting.footerLinks
|
||
|
},
|
||
|
copyright () {
|
||
|
return this.$store.state.setting.copyright
|
||
7 years ago
|
}
|
||
|
},
|
||
7 years ago
|
methods: {
|
||
|
onSubmit (e) {
|
||
|
e.preventDefault()
|
||
7 years ago
|
this.form.validateFields((err, values) => {
|
||
|
if (!err) {
|
||
|
this.logging = true
|
||
|
this.$axios.post('/login', {
|
||
|
name: this.form.getFieldValue('name'),
|
||
|
password: this.form.getFieldValue('password')
|
||
|
}).then((res) => {
|
||
|
this.logging = false
|
||
|
const result = res.data
|
||
|
if (result.code >= 0) {
|
||
7 years ago
|
const user = result.data.user
|
||
7 years ago
|
this.$router.push('/dashboard/workplace')
|
||
7 years ago
|
this.$store.commit('account/setuser', user)
|
||
7 years ago
|
this.$message.success(result.message, 3)
|
||
7 years ago
|
} else {
|
||
|
this.error = result.message
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
})
|
||
7 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
.container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100vh;
|
||
|
overflow: auto;
|
||
|
background: #f0f2f5 url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg') no-repeat center 110px;
|
||
|
background-size: 100%;
|
||
|
.content {
|
||
|
padding: 32px 0;
|
||
|
flex: 1;
|
||
|
@media (min-width: 768px){
|
||
|
padding: 112px 0 24px;
|
||
|
}
|
||
|
.top {
|
||
|
text-align: center;
|
||
|
.header {
|
||
|
height: 44px;
|
||
|
line-height: 44px;
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.logo {
|
||
|
height: 44px;
|
||
|
vertical-align: top;
|
||
|
margin-right: 16px;
|
||
|
}
|
||
|
.title {
|
||
|
font-size: 33px;
|
||
|
color: rgba(0,0,0,.85);
|
||
|
font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
||
|
font-weight: 600;
|
||
|
position: relative;
|
||
|
top: 2px;
|
||
|
}
|
||
|
}
|
||
|
.desc {
|
||
|
font-size: 14px;
|
||
|
color: rgba(0,0,0,.45);
|
||
|
margin-top: 12px;
|
||
|
margin-bottom: 40px;
|
||
|
}
|
||
|
}
|
||
|
.login{
|
||
|
width: 368px;
|
||
|
margin: 0 auto;
|
||
7 years ago
|
@media screen and (max-width: 576px) {
|
||
|
width: 95%;
|
||
|
}
|
||
|
@media screen and (max-width: 320px) {
|
||
|
.captcha-button{
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
}
|
||
7 years ago
|
.icon {
|
||
|
font-size: 24px;
|
||
|
color: rgba(0, 0, 0, 0.2);
|
||
|
margin-left: 16px;
|
||
|
vertical-align: middle;
|
||
|
cursor: pointer;
|
||
|
transition: color 0.3s;
|
||
|
|
||
|
&:hover {
|
||
|
color: #1890ff;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|