123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <template>
- <div>
- <el-menu class="navbar"
- mode="horizontal">
- <hamburger :toggle-click="toggleSideBar"
- :is-active="sidebar.opened"
- class="hamburger-container" />
- <breadcrumb />
- <el-dropdown class="avatar-container"
- trigger="click">
- <div class="avatar-wrapper">
- <i class="icon iconfont iconyonghu user" />
- <span class="user-name">{{ operator }}</span>
- <i class="el-icon-caret-bottom" />
- </div>
- <el-dropdown-menu slot="dropdown"
- class="user-dropdown">
- <el-dropdown-item divided>
- <span style="display:block;"
- @click="logout">注销登录</span>
- </el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </el-menu>
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import Breadcrumb from '@/components/Breadcrumb'
- import Hamburger from '@/components/Hamburger'
- import { getItem, delItem, getStorageItem } from '@/utils/storage'
- import { aesEncrypt } from '@/utils/aes'
- import { reqUpdatePassword } from '@/api/login'
- export default {
- data () {
- // 确认密码
- var validatePass3 = (rule, value, callback) => {
- if (value === '') {
- callback(new Error('请再次输入密码'))
- } else if (value !== this.form.password) {
- callback(new Error('两次输入密码不一致!'))
- } else {
- callback()
- }
- }
- // const validatePass = (rule, value, callback) => {
- // if (!/^(?![a-zA-Z]+$)(?![A-Z0-9]+$)(?![A-Z\W_]+$)(?![a-z0-9]+$)(?![a-z\W_]+$)(?![0-9\W_]+$)[a-zA-Z0-9\W_]{6,}$/.test(value)) {
- // callback(new Error('请按要求输入密码'))
- // } else {
- // callback()
- // }
- // };
- const validateOldPass = (rule, value, callback) => {
- if (value.length < 6 || value.length > 30) {
- callback(new Error('请输入原密码'))
- } else {
- callback()
- }
- }
- return {
- wordVisible: false, //修改密码弹框
- form: {
- oldPassword: '',
- password: '',
- confirmPassword: '',
- },
- rules: {
- oldPassword: [
- { required: true, validator: validateOldPass, trigger: 'blur' },
- ],
- password: [
- { required: true, message: '请选择新密码', trigger: 'blur' },
- ],
- confirmPassword: [
- { required: true, validator: validatePass3, trigger: 'blur' },
- ],
- },
- }
- },
- components: {
- Breadcrumb,
- Hamburger,
- },
- computed: {
- ...mapGetters(['sidebar']),
- },
- created () { },
- methods: {
- toggleSideBar () {
- this.$store.dispatch('ToggleSideBar')
- },
- logout () {
- this.$confirm('确定要退出吗', '温馨提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(() => {
- delItem('token')
- sessionStorage.clear()
- localStorage.clear()
- this.$router.push('/login')
- })
- },
- // 修改密码
- updatePassword () {
- this.wordVisible = true
- this.$nextTick(() => {
- this.$refs.form && this.$refs.form.resetFields()
- })
- },
- // 发送请求 确认修改
- confrimUpdate () {
- this.$refs.form.validate((valid) => {
- if (valid) {
- const { oldPassword, password, confirmPassword } = this.form
- let data = {
- oldPassword: aesEncrypt(oldPassword),
- password: aesEncrypt(password),
- confirmPassword: aesEncrypt(confirmPassword),
- }
- reqUpdatePassword(data).then((res) => {
- if (res.repCode == '0000') {
- this.wordVisible = false
- this.$message.success('修改密码成功,请重新登录')
- sessionStorage.clear()
- localStorage.clear()
- delItem('token')
- this.$router.push('/login')
- }
- })
- } else {
- return false
- }
- })
- },
- helpCenter () {
- let helpCategory = JSON.parse(localStorage.getItem('helpCategory'))
- this.$router.push({
- path: '/helpCenList/list',
- query: {
- id: 0,
- val: helpCategory[0].value,
- title: helpCategory[0].label,
- },
- })
- },
- },
- }
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- .navbar {
- height: 50px;
- line-height: 50px;
- border-radius: 0px !important;
- background: #fff !important;
- .hamburger-container {
- line-height: 57px;
- height: 49px;
- float: left;
- padding: 0 10px;
- background: #fff;
- }
- .screenfull {
- position: absolute;
- right: 90px;
- top: 16px;
- color: red;
- }
- .avatar-container {
- height: 50px;
- display: inline-block;
- position: absolute;
- right: 35px;
- .avatar-wrapper {
- line-height: 50px;
- cursor: pointer;
- margin-top: 5px;
- position: relative;
- .user-avatar {
- width: 40px;
- height: 40px;
- border-radius: 10px;
- vertical-align: text-bottom;
- }
- .user-name {
- color: #333;
- }
- .el-icon-caret-bottom {
- color: #333;
- position: absolute;
- right: -20px;
- top: 21px;
- font-size: 12px;
- }
- .user {
- color: #333;
- font-size: 16px;
- }
- }
- }
- }
- .password-box {
- .password-tips {
- position: absolute;
- right: 0px;
- top: 100%;
- line-height: 1;
- font-size: 13px;
- padding-top: 4px;
- }
- }
- .el-popper {
- padding: 0;
- }
- .el-dropdown-menu__item--divided {
- margin-top: 0;
- }
- </style>
|