Explorar el Código

个人注册完成将返回的uerUU获取到并传到注册完成页面

hangb hace 8 años
padre
commit
112c9cae97
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      components/register/PersonalRegistration.vue

+ 2 - 1
components/register/PersonalRegistration.vue

@@ -333,7 +333,8 @@
             .then(response => {
               if (response.data.success) {
                 this.isShowLoading = false
-                window.location.href = '/overRegister/overPersonal'
+                let userUU = response.data.content.userUU
+                window.location.href = `/overRegister/${userUU}`
               } else {
                 return Promise.reject(response.data)
               }