|
@@ -219,13 +219,25 @@
|
|
|
mask:true
|
|
|
})
|
|
|
this.$api.doRequest('get','/commonUser/login',{phone:this.phone,password:this.password}).then(res => {
|
|
|
- // 获得数据
|
|
|
- uni.setStorageSync('userInfo', res.data)
|
|
|
- that.$store.commit('login', res.data)
|
|
|
- that.liangxinLogin()
|
|
|
- uni.switchTab({
|
|
|
- url: '/pages/sale/information'
|
|
|
- });
|
|
|
+
|
|
|
+ if(res.data.code==200){
|
|
|
+ // pc登录
|
|
|
+ this.$api.doRequest('post','/auth/api/loginEnhanced',{companyName: "易粮易运",
|
|
|
+ password: "y123456",
|
|
|
+ username: "13333333333"}).then(res => {})
|
|
|
+ uni.setStorageSync('userInfo', res.data)
|
|
|
+ that.$store.commit('login', res.data)
|
|
|
+ that.liangxinLogin()
|
|
|
+ uni.switchTab({
|
|
|
+ url: '/pages/sale/information'
|
|
|
+ });
|
|
|
+ }else{
|
|
|
+ uni.showToast({
|
|
|
+ title: res.data.message,
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ })
|
|
|
+ }
|
|
|
uni.hideLoading()
|
|
|
})
|
|
|
.catch(res => {
|