Browse Source

Commit conflict

master
Kobus 5 years ago
parent
commit
56976cea6b
2 changed files with 0 additions and 4 deletions
  1. 0
    1
      src/components/user/loginPage.vue
  2. 0
    3
      src/store/modules/user/authentication.js

+ 0
- 1
src/components/user/loginPage.vue View File

@@ -151,7 +151,6 @@ export default {
151 151
     },
152 152
     SendMail() {},
153 153
     routerGoTo(goTo) {
154
-      console.log(goTo);
155 154
       this.$router.push(goTo);
156 155
     },
157 156
   },

+ 0
- 3
src/store/modules/user/authentication.js View File

@@ -80,17 +80,14 @@ export default {
80 80
         .then((resp) => {
81 81
           log.clearValues();
82 82
           log.setValues(resp.data);
83
-          console.log(resp.data);
84 83
 
85 84
           commit('auth_success', resp.data);
86 85
         })
87 86
         .catch((err) => {
88 87
           commit('auth_error');
89 88
           log.clearValues();
90
-          // reject(err);
91 89
           commit('auth_error', err.data);
92 90
         });
93
-      /* }); */
94 91
     },
95 92
     logout({
96 93
       commit,

Loading…
Cancel
Save