| | |
| | | <div class="header-user-info"> |
| | | <div class="avatar"><el-avatar icon="el-icon-user-solid"></el-avatar></div> |
| | | <el-dropdown @command="handleCommand"> |
| | | <div class="el-dropdown-link">用户名<i class="el-icon-arrow-down el-icon--right"></i></div> |
| | | <div class="el-dropdown-link">{{ username }}<i class="el-icon-arrow-down el-icon--right"></i></div> |
| | | <el-dropdown-menu slot="dropdown"> |
| | | <el-dropdown-item command="logout">退出</el-dropdown-item> |
| | | </el-dropdown-menu> |
| | |
| | | headerTitle: String |
| | | }, |
| | | data() { |
| | | return {} |
| | | return { |
| | | username: "" |
| | | } |
| | | }, |
| | | mounted() { |
| | | this.username = document.cookie.replace(/(?:(?:^|.*;\s*)username\s*=\s*([^;]*).*$)|^.*$/, "$1") |
| | | }, |
| | | methods: { |
| | | handleCommand(command) { |
| | | console.log(command) |
| | | if (command === "logout") { |
| | | // this.$router.push({ path: "/login" }) |
| | | document.cookie = "cookieName=; path=/;"; |
| | | this.$confirm('确定要注销当前用户吗?', '注销用户', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | | type: 'warning' |
| | | }).then(() => { |
| | | Cookies.remove('token') |
| | | window.location.href = 'http://localhost:8080/login'; //本地的智慧工厂-登录页 |
| | | document.cookie = "cookieName=; path=/;" |
| | | this.$confirm("确定要注销当前用户吗?", "注销用户", { |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | | type: "warning" |
| | | }) |
| | | .then(() => { |
| | | Cookies.remove("token") |
| | | window.location.href = "http://localhost:8080/login" //本地的智慧工厂-登录页 |
| | | this.$message({ |
| | | type: 'success', |
| | | message: '注销成功!' |
| | | }); |
| | | }).catch(() => { |
| | | type: "success", |
| | | message: "注销成功!" |
| | | }) |
| | | }) |
| | | .catch(() => { |
| | | this.$message({ |
| | | type: 'info', |
| | | message: '已取消注销' |
| | | }); |
| | | }); |
| | | type: "info", |
| | | message: "已取消注销" |
| | | }) |
| | | }) |
| | | } |
| | | } |
| | | } |