v1.3 版本发布,代码同步后端v1.3版本

This commit is contained in:
郑杰
2018-12-31 17:07:02 +08:00
parent 7f2e4ed3f9
commit c97e401918
38 changed files with 1338 additions and 40 deletions

View File

@@ -0,0 +1,172 @@
<template>
<div class="app-container">
<div id="content-main" :style="'width:'+width">
<el-card shadow="never" class="box-card user-info">
<div class="avatar-content">
<el-upload
:show-file-list="false"
:on-success="handleSuccess"
:on-error="handleError"
:headers="headers"
:action="updateAvatarApi"
class="avatar-uploader">
<img v-if="avatar" :src="avatar" title="点击上传头像" class="avatar">
<i v-else class="el-icon-plus avatar-uploader-icon"/>
</el-upload>
</div>
<div class="user-info-content">
<div>登录账号{{ name }}</div>
<div>注册时间{{ createTime }}</div>
<div>账号状态<span style="color: #909399">正常</span></div>
</div>
</el-card>
<el-card shadow="never" class="box-card reset-pass">
<h4 class="account-label-icon">登录密码</h4>
<updatePass/>
<p>安全性高的密码可使账号更安全建议设置同时包含字母数字符号的密码</p>
</el-card>
<el-card shadow="never" class="box-card reset-email">
<h4 class="account-label-icon">邮箱验证</h4>
<updateEmail :email="email"/>
<p>你的邮箱{{ formatEmail(email) }} </p>
<h4>绑定邮箱可用于</h4>
<ul>
<li>安全管理密码重置与修改</li>
<li>账号使用使用邮箱登录系统</li>
<li>站内通知站内信接收</li>
</ul>
</el-card>
</div>
</div>
</template>
<script>
import { mapGetters } from 'vuex'
import { regEmail } from '@/utils/index'
import updatePass from './center/updatePass'
import updateEmail from './center/updateEmail'
import { getToken } from '@/utils/auth'
import store from '@/store'
export default {
name: 'Center',
components: { updatePass, updateEmail },
data() {
return {
width: document.documentElement.clientWidth - 180 + 'px;',
headers: {
'Authorization': 'Bearer ' + getToken()
}
}
},
computed: {
...mapGetters([
'avatar',
'name',
'email',
'createTime',
'updateAvatarApi'
])
},
methods: {
formatEmail(mail) {
return regEmail(mail)
},
handleSuccess(response, file, fileList) {
this.$notify({
title: '头像修改成功',
type: 'success',
duration: 2500
})
store.dispatch('GetInfo').then(() => {})
},
// 监听上传失败
handleError(e, file, fileList) {
const msg = JSON.parse(e.message)
this.$notify({
title: msg.message,
type: 'error',
duration: 2500
})
}
}
}
</script>
<style rel="stylesheet/scss" lang="scss">
.box-card{
border: 0px;
border-bottom: 1px solid #ECEDFE;
border-radius: unset;
h4{
height: 26px;
margin: 0 0 7px;
line-height: 26px;
font-size: 1.1rem;
font-weight: 500;
color: #444242;
display: inline-block;
}
p{
font-family: Lantinghei;
font-size: 90%;
color: #747474;
}
ul{
padding: 0;
margin: 7px 0 0;
list-style: none;
font-size: 80%;
}
li {
float: left;
margin: 0 30px 10px 0!important;
}
li:before {
width: 8px;
height: 8px;
background-color: #52acd9;
color: #52acd9;
display: inline-block;
border-radius: 50%;
margin-right: 5px;
content: '';
box-sizing: border-box;
}
}
.user-info{
height: 170px;
}
.reset-email{
border-bottom: 0px;
}
.avatar-content, .user-info-content {
float: left;
}
.user-info-content{
font-family: Lantinghei;
position: relative;
font-size: 14px;
margin: 25px;
div{
margin-bottom: 15px;
}
}
.avatar-uploader-icon {
font-size: 28px;
width: 120px;
height: 120px;
line-height: 120px;
text-align: center;
}
.avatar {
width: 120px;
height: 120px;
display: block;
border-radius: 50%;
}
</style>