|
@@ -42,7 +42,7 @@
|
|
|
</div>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
- <div class="contain" v-show="state=='register'">
|
|
|
+ <div class="contain" v-show="state=='register'&&!logined">
|
|
|
<div class="tab-box">
|
|
|
<span :class="{active:isPhone}" @click="changeTab(0)">手机注册</span>
|
|
|
<span :class="{active:isEmail}" @click="changeTab(1)">邮箱注册</span>
|
|
@@ -87,7 +87,7 @@
|
|
|
<el-button @click="postRegData()">注册</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="contain" v-show="state=='find'">
|
|
|
+ <div class="contain" v-show="state=='find'&&!logined">
|
|
|
<div class="tab-box">
|
|
|
<span :class="{active:isPhone}" @click="changeTab(0)">手机找回</span>
|
|
|
<span :class="{active:isEmail}" @click="changeTab(1)">邮箱找回</span>
|
|
@@ -279,7 +279,7 @@ export default {
|
|
|
codetype: 'validate',
|
|
|
area: 86,
|
|
|
mobile: '',
|
|
|
- param: 'FzmRandom',
|
|
|
+ param: '',
|
|
|
type: ''
|
|
|
},
|
|
|
regData: {
|
|
@@ -353,15 +353,17 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
postValidMsg: function () {
|
|
|
+ let url;
|
|
|
if (this.isPhone) {
|
|
|
this.postVaildData.type = 'sms'
|
|
|
+ this.postVaildData.param = 'FzmRandom'
|
|
|
+ url = 'https://dev407.33.cn/api/send/newsms'
|
|
|
} else {
|
|
|
this.postVaildData.type = 'email'
|
|
|
+ this.postVaildData.param = 'FzmDateTime|FzmRandom'
|
|
|
+ url = 'https://dev407.33.cn/api/send/newmail'
|
|
|
}
|
|
|
- this.axios.post('https://dev407.33.cn/api/send/newsms', qs.stringify(this.postVaildData)).then((res) => {
|
|
|
- console.log(typeof (res.data.code))
|
|
|
- console.log(res.data.code)
|
|
|
- console.log(res.data)
|
|
|
+ this.axios.post(url, qs.stringify(this.postVaildData)).then((res) => {
|
|
|
if (res.data.code === 200) {
|
|
|
this.notify('发送成功', 'success')
|
|
|
this.getCode()
|
|
@@ -395,12 +397,12 @@ export default {
|
|
|
this.regData.email = this.postVaildData.email
|
|
|
}
|
|
|
if (this.alRead) {
|
|
|
- this.axios.post('https://dev407.33.cn/api/broker/register', qs.stringify(this.logData)).then((res) => {
|
|
|
+ this.axios.post('https://dev407.33.cn/api/broker/register', qs.stringify(this.regData)).then((res) => {
|
|
|
if (res.data.error == 'OK') {
|
|
|
- // localStorage.setItem('userInfo', JSON.stringify(res.data.data))
|
|
|
- // this.usr.username = res.data.data.username
|
|
|
- // this.$store.dispatch('login')
|
|
|
- // console.log(this.$store.state.loginedUser.username)
|
|
|
+ this.logData.email = this.regData.email
|
|
|
+ this.logData.mobile = this.regData.mobile
|
|
|
+ this.logData.password = this.regData.password
|
|
|
+ this.postLoginData()
|
|
|
} else {
|
|
|
this.notify(res.data.message, 'warning')
|
|
|
}
|