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.

169 lines
6.0 KiB

4 years ago
<template>
<div class="header">
3 years ago
<div style="line-height: 60px">
<img class="logo" :src="logoUrl" />
<span class="title">{{ title }}</span>
</div>
4 years ago
<div class="action">
<el-dropdown class="user-wrap" @command="userCommand">
<div class="user">
<el-avatar :size="40" :src="avatar"></el-avatar>
3 years ago
<span class="m-l-10">{{ customerName || userName }}</span>
</div>
<el-dropdown-menu slot="dropdown">
3 years ago
<el-dropdown-item v-if="!customerName" command="person">个人中心</el-dropdown-item>
<el-dropdown-item v-else command="resetPw">修改密码</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
4 years ago
<el-divider direction="vertical"></el-divider>
3 years ago
<el-button type="text" class="ml20" @click="logout">退出</el-button>
4 years ago
</div>
<el-dialog title="修改密码" :visible.sync="passwordVisible" :close-on-click-modal="false" :append-to-body="true" @close="resetPassword" width="30%">
<el-form ref="passwordForm" label-width="82px">
<el-form-item label="原密码">
<el-input type="password" v-model="passwordForm.password" placeholder="请输入原密码"></el-input>
</el-form-item>
<el-form-item label="新密码">
<el-input type="password" v-model="passwordForm.newPassword" placeholder="请输入新密码"></el-input>
</el-form-item>
<el-form-item label="确认新密码">
<el-input type="password" v-model="passwordForm.reNewPassword" placeholder="请确认新密码" @keyup.enter.native="submitPassword"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="passwordVisible = false"> </el-button>
<el-button type="primary" @click="submitPassword"> </el-button>
</span>
</el-dialog>
4 years ago
</div>
</template>
<script>
4 years ago
import { mapState, mapActions } from "vuex";
import util from "@/libs/util";
4 years ago
4 years ago
export default {
data() {
return {
passwordVisible: false,
passwordForm: {
password: "",
newPassword: "",
reNewPassword: ""
}
4 years ago
};
},
computed: {
4 years ago
...mapState("user", [
"avatar", "userName", "title", "logoUrl", "customer", "customerName", 'fromClient'
4 years ago
])
},
4 years ago
mounted() {
this.getSystemDetail();
this.getUserDetail();
4 years ago
},
methods: {
4 years ago
...mapActions("user", [
3 years ago
"setTitle", "setLogoUrl", "setAvatar", "setUserName", 'logout'
4 years ago
]),
getSystemDetail() { // 获取系统logo
this.$get(this.api.logoDetail).then(res => {
3 years ago
if (res.data) {
this.setTitle(res.data.title);
this.setLogoUrl(res.data.logoUrl);
}
}).catch(res => {
});
},
getUserDetail() { // 获取用户详情
this.$get(this.api.queryUserInfoDetails).then(res => {
let { hrUserInfo } = res.result
if (hrUserInfo) {
const { userAvatars, userName } = hrUserInfo
userAvatars && this.setAvatar(userAvatars)
this.setUserName(userName)
} else {
this.$get(this.api.isClient).then(res => {
res.customerName && this.setUserName(res.customerName)
}).catch(res => {})
}
}).catch(res => {})
},
userCommand(command) { // 切换下拉菜单
if (command == "person") {
this.$router.push("/setting/person");
} else {
this.passwordVisible = true;
}
},
resetPassword() { // 关闭修改密码
this.passwordForm = {
password: "",
newPassword: "",
reNewPassword: ""
};
},
submitPassword() { // 提交修改密码
if (!this.passwordForm.password) return util.warningMsg("请输入原密码");
if (!this.passwordForm.newPassword) return util.warningMsg("请输入新密码");
if (!this.passwordForm.reNewPassword) return util.warningMsg("请确认新密码");
if (this.passwordForm.newPassword.length < 6 || this.passwordForm.reNewPassword.length < 6) return util.warningMsg("请输入6位数以上的密码");
if (this.passwordForm.newPassword !== this.passwordForm.reNewPassword) return util.warningMsg("输入的新密码不一致,请重新确认");
if (this.passwordForm.password === this.passwordForm.newPassword) return util.warningMsg("原密码跟新密码不能一致");
this.$post(this.api.examinePassword, this.passwordForm).then(res => {
util.successMsg("修改成功");
this.passwordVisible = false;
}).catch(err => {
});
}
4 years ago
}
4 years ago
};
</script>
<style lang="scss" scoped>
.header {
position: relative;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 16px;
color: #333;
background-color: #fff;
4 years ago
4 years ago
.logo {
height: 50px;
margin: 0 20px;
}
.title {
font-size: 18px;
font-weight: bold;
4 years ago
}
4 years ago
4 years ago
.action {
display: flex;
padding-right: 50px;
align-items: center;
4 years ago
.user {
4 years ago
display: inline-flex;
align-items: center;
cursor: pointer;
3 years ago
span {
font-size: 12px;
}
4 years ago
}
4 years ago
.el-button--text {
4 years ago
margin-left: 20px;
color: #333;
}
4 years ago
.el-divider {
4 years ago
width: 2px;
height: 15px;
margin-left: 20px;
background-color: #333;
}
}
}
</style>