|
|
|
@ -86,7 +86,7 @@ |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import vFooter from "@/layouts/footer"; |
|
|
|
|
import { mapActions } from "vuex"; |
|
|
|
|
import { mapMutations, mapActions } from "vuex"; |
|
|
|
|
import util from "@/libs/util"; |
|
|
|
|
import Setting from "@/setting"; |
|
|
|
|
import axios from "axios" |
|
|
|
@ -143,6 +143,9 @@ export default { |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
...mapMutations("user", [ |
|
|
|
|
'SET_CUSTOMERNAME' |
|
|
|
|
]), |
|
|
|
|
...mapActions("user", [ |
|
|
|
|
"setInfo" |
|
|
|
|
]), |
|
|
|
@ -168,9 +171,12 @@ export default { |
|
|
|
|
if (valid) { |
|
|
|
|
this.form.distinguish = Number(this.form.distinguish); |
|
|
|
|
this.$post(this.api.logins, this.form).then((res) => { |
|
|
|
|
if (res.status == 200) { |
|
|
|
|
if (res && res.status == 30001) { |
|
|
|
|
this.phoneVisible = true |
|
|
|
|
this.getVerImg() |
|
|
|
|
this.form.code = '' |
|
|
|
|
} else if (res.status == 200) { |
|
|
|
|
this.token = res.data.token |
|
|
|
|
console.log(11, res) |
|
|
|
|
// 查询是否是客户,如果是客户,则弹出选择端的页面去选择跳转到哪个端 |
|
|
|
|
axios.get(this.api.isClient, { |
|
|
|
|
headers: { |
|
|
|
@ -179,6 +185,7 @@ export default { |
|
|
|
|
}).then(res => { |
|
|
|
|
// 如果是客户 |
|
|
|
|
if (res.data.customer) { |
|
|
|
|
this.SET_CUSTOMERNAME(res.data.customerName) |
|
|
|
|
this.selectVisible = true |
|
|
|
|
} else { |
|
|
|
|
this.setLogin() |
|
|
|
@ -188,10 +195,7 @@ export default { |
|
|
|
|
util.errorMsg(res.message) |
|
|
|
|
} |
|
|
|
|
}).catch(res => { |
|
|
|
|
if (res && res.status == 30001) { |
|
|
|
|
this.phoneVisible = true; |
|
|
|
|
} |
|
|
|
|
this.getVerImg(); |
|
|
|
|
this.getVerImg() |
|
|
|
|
this.form.code = '' |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
@ -305,8 +309,12 @@ export default { |
|
|
|
|
right: 0; |
|
|
|
|
} |
|
|
|
|
.login{ |
|
|
|
|
z-index: 4; |
|
|
|
|
position: absolute; |
|
|
|
|
top: calc((100vh - 611px) / 2); |
|
|
|
|
left: 50%; |
|
|
|
|
width: 436px; |
|
|
|
|
margin: 188px auto 150px; |
|
|
|
|
transform: translateX(-50%); |
|
|
|
|
.form{ |
|
|
|
|
padding: 38px 38px 60px; |
|
|
|
|
border-radius: 6px; |
|
|
|
@ -435,7 +443,7 @@ export default { |
|
|
|
|
&:hover img { |
|
|
|
|
opacity: .9; |
|
|
|
|
} |
|
|
|
|
&.active p { |
|
|
|
|
&.active p, &:hover p { |
|
|
|
|
background-color: #9278ff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|