Commit 68a06d53 authored by 肖健's avatar 肖健

注释用不到的登录

parent 53cc17e1
......@@ -6,343 +6,343 @@
<view class="appCotent">
<div class="binding">
<div class="login__logo">
<image src="@/static/binding/logo.png">
</div>
<!-- #ifdef MP-WEIXIN -->
<!-- <view v-if="isCanUse">
<view>
<button class="login__btn" hover-class="none" type='primary' @click="getUserProfile">
微信一键登录
</button>
</view>
</view> -->
<view v-if="isCanUse2">
<view>
<button class="login__btn" v-if="!checked" hover-class="none" type='primary' @click="checkLogin">
微信一键登录
</button>
<button class="login__btn" v-if="checked" hover-class="none" type='primary'
open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">
微信一键登录
</button>
</view>
</view>
<!-- #endif -->
<div class="login__read">
<u-checkbox-group placement="row">
<u-checkbox :checked='checked' @change="changeBtn"></u-checkbox>
</u-checkbox-group>
已阅读并同意 <span @click="goArticle(1)">《用户注册服务协议》</span><span
@click="goArticle(2)">《京东汽车挪车牌隐私权政策》</span>。若您的手机号未注册,将为您直接注册友众账号
</div>
</div>
<!-- <div class="binding">-->
<!-- <div class="login__logo">-->
<!-- <image src="@/static/binding/logo.png">-->
<!-- </div>-->
<!-- &lt;!&ndash; #ifdef MP-WEIXIN &ndash;&gt;-->
<!-- &lt;!&ndash; <view v-if="isCanUse">-->
<!-- <view>-->
<!-- <button class="login__btn" hover-class="none" type='primary' @click="getUserProfile">-->
<!-- 微信一键登录-->
<!-- </button>-->
<!-- </view>-->
<!-- </view> &ndash;&gt;-->
<!-- <view v-if="isCanUse2">-->
<!-- <view>-->
<!-- <button class="login__btn" v-if="!checked" hover-class="none" type='primary' @click="checkLogin">-->
<!-- 微信一键登录-->
<!-- </button>-->
<!-- <button class="login__btn" v-if="checked" hover-class="none" type='primary'-->
<!-- open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">-->
<!-- 微信一键登录-->
<!-- </button>-->
<!-- </view>-->
<!-- </view>-->
<!-- &lt;!&ndash; #endif &ndash;&gt;-->
<!-- <div class="login__read">-->
<!-- <u-checkbox-group placement="row">-->
<!-- <u-checkbox :checked='checked' @change="changeBtn"></u-checkbox>-->
<!-- </u-checkbox-group>-->
<!-- 已阅读并同意 <span @click="goArticle(1)">《用户注册服务协议》</span><span-->
<!-- @click="goArticle(2)">《京东汽车挪车牌隐私权政策》</span>。若您的手机号未注册,将为您直接注册友众账号-->
<!-- </div>-->
<!-- </div>-->
</view>
</template>
<script>
export default {
data() {
return {
checked: true,
code: "",
isCanUse: false, //默认为true
isCanUse2: false, //默认为true
openid: '',
nc_protocol: false,
//扫描二维码参数
scene: "",
//检查绑定挪车码
checkCode: {},
//上级url
superiorUrl: '/pages/main',
//上级路径参数
superiorParam: "index",
failure: null
// checked: true,
// code: "",
// isCanUse: false, //默认为true
// isCanUse2: false, //默认为true
// openid: '',
// nc_protocol: false,
// //扫描二维码参数
// scene: "",
// //检查绑定挪车码
// checkCode: {},
// //上级url
// superiorUrl: '/pages/main',
// //上级路径参数
// superiorParam: "index",
// failure: null
};
},
methods: {
changeBtn() {
this.checked = !this.checked;
},
//登录
checkLogin() {
uni.showToast({
title: "请先阅读并同意《用户注册服务协议》、《京东汽车挪车牌隐私权政策》",
icon: 'none',
duration: 2000,
});
},
//检查挪车码存在、是否绑定
getCheckMoveCode() {
let opts = {
url: '/app/user/c/m/c',
method: 'post'
};
this.http.httpTokenRequest(opts, {
code: this.scene
}).then(res => {
if (res.data.code == 200) {
this.checkCode = res.data.data
//未绑定了的情况
if (!this.checkCode.bindFlag) {
uni.navigateTo({
url: '/pagesB/pages/move-car/scan?moveCode=' + this.checkCode.code
})
} else if (this.checkCode.selfFlag) {
} else {
}
}
})
},
wechatLogin() {
wx.login({
success: (res) => {
this.code = res.code
this.wechatSession(res.code)
}
})
},
//获取session_key
async wechatSession(code) {
let that = this
let param = {
code: code,
}
let opts = {
url: '/xcx/code/session',
method: 'post'
}
await that.http.httpRequest(opts, param).then(res => {
if (res.data.code == 200) {
that.openid = res.data.data.openid
uni.setStorageSync('openid', that.openid);
}
})
},
//解析手机号
getPhoneNumber(e) {
uni.showLoading({
title: '加载中',
mask: true
});
let that = this
if (e.detail.errMsg == "getPhoneNumber:ok") {
// uni.hideLoading()
that.decodePhoneLogin(e.detail)
} else {
uni.hideLoading()
console.log("用户点击了拒绝")
}
},
//解密手机号码
async decodePhoneLogin(detail) {
let encryptedData = detail.encryptedData
let iv = detail.iv
let that = this
let param = {
code: detail.code,
openid: that.openid
}
let opts = {
url: '/xcx/login',
method: 'post'
}
await that.http.httpRequest(opts, param).then(res => {
if (res.data.code == 200) {
uni.showToast({
title: '授权成功',
duration: 1500
})
uni.setStorageSync('xcxIndexPath', res.data.data.xcxIndexPath);
uni.setStorageSync("userToken", res.data.data.token)
if (this.scene) {
let param = {
code: this.scene
}
opts = {
url: '/app/user/c/m/c',
method: 'post'
}
that.http.httpTokenRequest(opts, param).then(res => {
if (res.data.code == 200) {
if (res.data.data.bindFlag) {
that.gotoMoveCar();
} else {
that.gotoBindMoveCar();
}
}
})
} else if (this.failure == 401) {
uni.navigateBack()
return
} else {
that.gotoIndex()
}
} else {
uni.showToast({
title: '授权失败',
icon: 'none',
})
}
})
},
gotoIndex() {
let jumpUrl = this.superiorUrl
if (this.superiorUrl == '/pages/main') {
if (!this.superiorParam) {
this.superiorParam = "0"
}
jumpUrl += "?index=" + this.superiorParam
} else {
jumpUrl += "?id=" + this.superiorParam
}
//跳转到绑定页面
uni.reLaunch({ //信息更新成功后跳转到小程序首页
//todo 友众账号绑定界面暂缓
//url: '/pages/binding/binding'
url: jumpUrl
})
// uni.navigateTo({
// url: '/pages/binding/binding'
// });
},
//跳转到挪车页面
gotoMoveCar() {
let that = this;
uni.navigateTo({
url: '/pagesB/pages/move-car/oneMoveCar?scene=' + that.scene
});
},
//跳转到绑定页面
gotoBindMoveCar() {
let that = this;
uni.navigateTo({
url: '/pagesB/pages/move-car/scan?moveCode=' + that.scene
});
},
// 跳转协议政策页面
goArticle(index) {
let opts = {
url: '',
method: 'get'
};
if (index == 1) {
opts.url = "/app/user/registerAgreement"
} else {
opts.url = "/app/user/ofPrivacy"
}
this.http.httpTokenRequest(opts, {}).then(res => {
if (res.data.code == 200) {
let data = res.data.msg
uni.setStorageSync("articelContent", data)
uni.navigateTo({
url: '/pages/binding/article'
});
}
})
}
},
onLoad(e) { //默认加载
let openid = uni.getStorageSync('openid');
this.failure = e.failure
if (!openid) {
this.wechatLogin()
} else {
this.openid = openid;
}
if (e && e.url) {
this.superiorUrl = e.url
if (e.index) {
this.superiorParam = e.index
}
if (e.id) {
this.superiorParam = e.id
}
}
// #ifdef MP-WEIXIN
if (e.scene) {
//获取二维码携带的参数
//扫码后得到的参数
let scene = decodeURIComponent(e.scene)
// scene = scene.split('&')
// let data = {
// //场景值
// scene: e.scene
// }
this.scene = scene;
}
let userToken = uni.getStorageSync('userToken')
if (userToken) {
let that = this
let opts = {
url: '/app/user/info',
method: 'get'
}
that.http.httpTokenRequest(opts, {}).then(res => {
if (res.data.code == 200) {
uni.setStorageSync('xcxIndexPath', res.data.data.xcxIndexPath);
if (that.scene) {
let param = {
code: this.scene
}
opts = {
url: '/app/user/c/m/c',
method: 'post'
}
that.http.httpTokenRequest(opts, param).then(res => {
console.info(res);
if (res.data.code == 200) {
if (res.data.data.bindFlag) {
that.gotoMoveCar();
} else {
that.gotoBindMoveCar();
}
}
})
} else {
this.gotoIndex()
}
} else {
uni.showToast({
title: '授权失败',
icon: 'none',
})
this.isCanUse2 = true
}
})
} else {
this.isCanUse2 = true
}
// #endif
// changeBtn() {
// this.checked = !this.checked;
// },
// //登录
// checkLogin() {
// uni.showToast({
// title: "请先阅读并同意《用户注册服务协议》、《京东汽车挪车牌隐私权政策》",
// icon: 'none',
// duration: 2000,
// });
//
// },
// //检查挪车码存在、是否绑定
// getCheckMoveCode() {
// let opts = {
// url: '/app/user/c/m/c',
// method: 'post'
// };
// this.http.httpTokenRequest(opts, {
// code: this.scene
// }).then(res => {
// if (res.data.code == 200) {
// this.checkCode = res.data.data
// //未绑定了的情况
// if (!this.checkCode.bindFlag) {
// uni.navigateTo({
// url: '/pagesB/pages/move-car/scan?moveCode=' + this.checkCode.code
// })
// } else if (this.checkCode.selfFlag) {
//
// } else {
//
// }
// }
// })
// },
// wechatLogin() {
// wx.login({
// success: (res) => {
// this.code = res.code
// this.wechatSession(res.code)
// }
// })
// },
// //获取session_key
// async wechatSession(code) {
// let that = this
// let param = {
// code: code,
// }
// let opts = {
// url: '/xcx/code/session',
// method: 'post'
// }
// await that.http.httpRequest(opts, param).then(res => {
// if (res.data.code == 200) {
// that.openid = res.data.data.openid
// uni.setStorageSync('openid', that.openid);
// }
// })
// },
// //解析手机号
// getPhoneNumber(e) {
// uni.showLoading({
// title: '加载中',
// mask: true
// });
// let that = this
// if (e.detail.errMsg == "getPhoneNumber:ok") {
// // uni.hideLoading()
// that.decodePhoneLogin(e.detail)
// } else {
// uni.hideLoading()
// console.log("用户点击了拒绝")
// }
// },
// //解密手机号码
// async decodePhoneLogin(detail) {
// let encryptedData = detail.encryptedData
// let iv = detail.iv
// let that = this
//
// let param = {
// code: detail.code,
// openid: that.openid
// }
// let opts = {
// url: '/xcx/login',
// method: 'post'
// }
//
// await that.http.httpRequest(opts, param).then(res => {
// if (res.data.code == 200) {
// uni.showToast({
// title: '授权成功',
// duration: 1500
// })
// uni.setStorageSync('xcxIndexPath', res.data.data.xcxIndexPath);
// uni.setStorageSync("userToken", res.data.data.token)
//
// if (this.scene) {
// let param = {
// code: this.scene
// }
// opts = {
// url: '/app/user/c/m/c',
// method: 'post'
// }
// that.http.httpTokenRequest(opts, param).then(res => {
// if (res.data.code == 200) {
// if (res.data.data.bindFlag) {
// that.gotoMoveCar();
// } else {
// that.gotoBindMoveCar();
// }
// }
// })
//
// } else if (this.failure == 401) {
// uni.navigateBack()
// return
// } else {
// that.gotoIndex()
// }
//
// } else {
// uni.showToast({
// title: '授权失败',
// icon: 'none',
// })
// }
// })
// },
// gotoIndex() {
// let jumpUrl = this.superiorUrl
// if (this.superiorUrl == '/pages/main') {
// if (!this.superiorParam) {
// this.superiorParam = "0"
// }
// jumpUrl += "?index=" + this.superiorParam
// } else {
// jumpUrl += "?id=" + this.superiorParam
// }
// //跳转到绑定页面
// uni.reLaunch({ //信息更新成功后跳转到小程序首页
// //todo 友众账号绑定界面暂缓
// //url: '/pages/binding/binding'
// url: jumpUrl
// })
//
// // uni.navigateTo({
// // url: '/pages/binding/binding'
// // });
//
// },
// //跳转到挪车页面
// gotoMoveCar() {
// let that = this;
// uni.navigateTo({
// url: '/pagesB/pages/move-car/oneMoveCar?scene=' + that.scene
// });
// },
// //跳转到绑定页面
// gotoBindMoveCar() {
// let that = this;
// uni.navigateTo({
// url: '/pagesB/pages/move-car/scan?moveCode=' + that.scene
// });
// },
// // 跳转协议政策页面
// goArticle(index) {
// let opts = {
// url: '',
// method: 'get'
// };
// if (index == 1) {
// opts.url = "/app/user/registerAgreement"
// } else {
// opts.url = "/app/user/ofPrivacy"
// }
// this.http.httpTokenRequest(opts, {}).then(res => {
// if (res.data.code == 200) {
// let data = res.data.msg
// uni.setStorageSync("articelContent", data)
// uni.navigateTo({
// url: '/pages/binding/article'
// });
// }
// })
// }
// },
// onLoad(e) { //默认加载
// let openid = uni.getStorageSync('openid');
// this.failure = e.failure
// if (!openid) {
// this.wechatLogin()
// } else {
// this.openid = openid;
// }
// if (e && e.url) {
// this.superiorUrl = e.url
// if (e.index) {
// this.superiorParam = e.index
// }
// if (e.id) {
// this.superiorParam = e.id
// }
//
// }
// // #ifdef MP-WEIXIN
// if (e.scene) {
//
// //获取二维码携带的参数
// //扫码后得到的参数
// let scene = decodeURIComponent(e.scene)
// // scene = scene.split('&')
// // let data = {
// // //场景值
// // scene: e.scene
// // }
//
// this.scene = scene;
// }
//
//
// let userToken = uni.getStorageSync('userToken')
// if (userToken) {
// let that = this
// let opts = {
// url: '/app/user/info',
// method: 'get'
// }
//
// that.http.httpTokenRequest(opts, {}).then(res => {
// if (res.data.code == 200) {
// uni.setStorageSync('xcxIndexPath', res.data.data.xcxIndexPath);
// if (that.scene) {
// let param = {
// code: this.scene
// }
// opts = {
// url: '/app/user/c/m/c',
// method: 'post'
// }
// that.http.httpTokenRequest(opts, param).then(res => {
// console.info(res);
// if (res.data.code == 200) {
// if (res.data.data.bindFlag) {
// that.gotoMoveCar();
// } else {
// that.gotoBindMoveCar();
// }
// }
// })
//
// } else {
// this.gotoIndex()
// }
//
// } else {
// uni.showToast({
// title: '授权失败',
// icon: 'none',
// })
// this.isCanUse2 = true
// }
// })
// } else {
// this.isCanUse2 = true
// }
// // #endif
}
}
</script>
<style lang="scss" scoped>
button::after {
/*button::after {
border: none;
}
......@@ -411,5 +411,5 @@
color: rgb(0, 81, 255);
}
}
}
}*/
</style>
......@@ -7,12 +7,12 @@
// "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/binding/index",
"style": {
"navigationBarTitleText": "登录"
}
},
// {
// "path": "pages/binding/index",
// "style": {
// "navigationBarTitleText": "登录"
// }
// },
{
"path": "pages/binding/binding",
"style": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment