Parcourir la source

Commit conflict

master
Kobus il y a 6 ans
Parent
révision
56976cea6b
2 fichiers modifiés avec 0 ajouts et 4 suppressions
  1. 0
    1
      src/components/user/loginPage.vue
  2. 0
    3
      src/store/modules/user/authentication.js

+ 0
- 1
src/components/user/loginPage.vue Voir le fichier

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

+ 0
- 3
src/store/modules/user/authentication.js Voir le fichier

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

Chargement…
Annuler
Enregistrer