hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2024-10-18 18:00:47 2 * @Date: 2024-10-18 18:00:47
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-12-16 14:21:04 4 + * @LastEditTime: 2024-12-16 15:17:24
5 * @FilePath: /hager/src/views/user/info.vue 5 * @FilePath: /hager/src/views/user/info.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -91,12 +91,13 @@ export default { ...@@ -91,12 +91,13 @@ export default {
91 this.$router.push({ 91 this.$router.push({
92 path: '/user/login', 92 path: '/user/login',
93 }) 93 })
94 + } else {
95 + this.email = data.email;
96 + this.username = data.username;
97 + this.tel = data.mobile;
98 + this.corp = data.company;
99 + this.department = data.department;
94 } 100 }
95 - this.email = data.email;
96 - this.username = data.username;
97 - this.tel = data.mobile;
98 - this.corp = data.company;
99 - this.department = data.department;
100 } 101 }
101 }, 102 },
102 onHandle () { 103 onHandle () {
......