|
|
@ -189,10 +189,24 @@ export default { |
|
|
|
Account: "", |
|
|
|
Password: "", |
|
|
|
Email: "", |
|
|
|
Subscribe: true |
|
|
|
Subscribe: true, |
|
|
|
}, |
|
|
|
signUp: false, |
|
|
|
}; |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
signUp: { |
|
|
|
handler: function () { |
|
|
|
if (this.signUp == true) { |
|
|
|
this.$auth.$storage.removeUniversal("userPassword"); |
|
|
|
this.$auth.$storage.removeUniversal("userAccount"); |
|
|
|
console.log("帳號: " + this.$auth.$storage.getUniversal('userAccount')); |
|
|
|
console.log("密碼: " + this.$auth.$storage.getUniversal('userPassword')); |
|
|
|
console.log("都給我刪掉"); |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
userRegister() { |
|
|
|
const postUserData = { ...this.userData }; |
|
|
@ -202,6 +216,7 @@ export default { |
|
|
|
`/trending/api/Signup/SignupWithEmail`, postUserData |
|
|
|
) |
|
|
|
.then((response) => { |
|
|
|
|
|
|
|
//console.log(JSON.stringify(response)); |
|
|
|
if(response.data.STATUSCODE == "400"){ |
|
|
|
this.errorDialog = true; |
|
|
@ -210,6 +225,7 @@ export default { |
|
|
|
if(response && response.data && response.data.DATA && response.data.DATA.rel){ |
|
|
|
let data = response.data.DATA.rel |
|
|
|
if(data){ |
|
|
|
this.signUp = true; |
|
|
|
this.timer = setInterval(() => { |
|
|
|
if (this.countdown > 0) { |
|
|
|
this.countdown--; |
|
|
@ -218,6 +234,7 @@ export default { |
|
|
|
clearInterval(this.timer); |
|
|
|
} |
|
|
|
}, 1000); |
|
|
|
console.log("pageloading:" + this.isPageLoading); |
|
|
|
this.isPageLoading = false; |
|
|
|
this.dialog = !this.dialog; |
|
|
|
} |
|
|
|