@@ -215,7 +215,7 @@
if (this.state.mobile === 'success') {
this.$indicator.open('获取中...')
let _this = this
- this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.step1.mobile}})
+ this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.step1.mobile, timestamp: new Date().getTime() + ''}})
.then(response => {
this.$indicator.close()
if (response.data) {
@@ -219,7 +219,7 @@
- this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.mobile}})
+ this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.mobile, timestamp: new Date().getTime() + ''}})
@@ -184,7 +184,7 @@
- this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.valid.mobile}})
+ this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.valid.mobile, timestamp: new Date().getTime() + ''}})
@@ -72,7 +72,7 @@
} else {
- this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.info}})
+ this.$http.get('/sso/personal/register/checkCode', {params: {mobile: this.info, timestamp: new Date().getTime() + ''}})
@@ -589,7 +589,7 @@
// 获取校验码
getCheckCode () {
this.isShowLoading = true
- this.$http.get(`/sso/userspace/register/checkCode`, {params: {mobile: this.enterprise.mobile}})
+ this.$http.get(`/sso/userspace/register/checkCode`, {params: {mobile: this.enterprise.mobile, timestamp: new Date().getTime() + ''}})
this.isShowLoading = false
@@ -516,7 +516,7 @@
// this.getCode()
- this.$http.get(`/sso/personal/register/checkCode`, {params: {mobile: this.item.mobile}})
+ this.$http.get(`/sso/personal/register/checkCode`, {params: {mobile: this.item.mobile, timestamp: new Date().getTime() + ''}})