123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- <template>
- <view class="container">
- <!-- #ifdef MP-WEIXIN -->
- <view class="force-login-wrap">
- <view class="force-login__content y-f">
- <view class="logo">
- <view class="logo-img">
- <image src="../../static/logo.png"></image>
- </view>
- <view class="title">芳华佳选</view>
- </view>
- <view class="login-notice">为了提供更优质的服务,请先登录</view>
- <!-- <button
- class="author-btn"
- @click="wxLogin()" >微信授权登录</button> -->
- <view class="btns">
- <button
- class="author-btn"
- open-type="getPhoneNumber"
- @getphonenumber="phoneLogin" >一键授权手机号登录</button>
- <button class="author-btn" v-if="isAgreement==false" @click="handleAgree()">一键授权手机号登录</button>
-
- </view>
- <!-- <button
- class="author-btn"
- open-type="getPhoneNumber"
- @getphonenumber="phoneLogin" >微信授权登录</button> -->
- <button class="close-btn" @tap="back">暂不登录</button>
-
- <view class="tips">
- <checkbox :checked="isAgreement" @click="handleAgreement()" />
- <view @click="handleAgreement()">您同意并接受</view>
- <view class="btn" @click="openH5('/h5/userAgreement')">《用户协议》</view>
- <view class="btn" @click="openH5('/h5/privacyPolicy')">《隐私保护》</view>
- </view>
- </view>
- </view>
- <!-- #endif -->
-
-
- </view>
- </template>
- <script>
- import { loginByMiniApp,getUserInfo,loginByMp } from '@/api/user'
- export default {
- data() {
- return {
- code:null,
- isAgreement:false,
- }
- },
- computed: {
- },
- onLoad(option)
- {
- // #ifdef MP-WEIXIN
- uni.$on('refreshLogin', () => {
- uni.navigateBack({
- delta:1
- })
- })
- //选获取CODE,防止后请求的时候腾讯服务端未同步报错
- this.getCode();
- // #endif
-
- // #ifdef H5
- if (this.checkWeixin()) {
- this.getWxCode()
- } else {
- uni.showToast({
- icon:'none',
- title: "请在微信中打开",
- });
- //跳转到手机号密码登录
- }
- // #endif
-
- },
- onUnload() {
- },
- mounted() {
-
- },
- methods: {
- handleAgree(){
- if(!this.isAgreement){
- uni.showToast({
- icon:'none',
- title: "请先同意协议后再登录",
- });
- }
- },
-
- checkWeixin(){
- var ua = window.navigator.userAgent.toLowerCase();
- if (ua.match(/micromessenger/i) == 'micromessenger') {
- return true;
- } else {
- return false;
- }
- },
- //URL地址是否存在CODE
- getUrlCode(name) {
- return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ''])[1]
- .replace(/\+/g, '%20')) || null
- },
- //获取微信CODE
- getWxCode() {
- //在微信公众号请求用户网页授权之前,开发者需要先到公众平台官网中的“开发 - 接口权限 - 网页服务 - 网页帐号 - 网页授权获取用户基本信息”的配置选项中,修改授权回调域名。请注意,这里填写的是域名(是一个字符串),而不是URL,因此请勿加 http:// 等协议头;
- //http://shequ.natapp1.cc/#/pages/index/index?deviceId=8
- var appId="wx19c8813ffc33d1cb";
- var url="http://192.168.10.122:7014";
- window.location.href ='https://open.weixin.qq.com/connect/oauth2/authorize?appid='+appId+'&redirect_uri=' +encodeURIComponent(url+"/#/pages/auth/wxLogin") +'&response_type=code&scope=snsapi_userinfo&state=JeffreySu-954&connect_redirect=1#wechat_redirect';
- //console.log('https://open.weixin.qq.com/connect/oauth2/authorize?appid='+appId+'&redirect_uri=' +encodeURIComponent("http://shequ.natapp1.cc/#/pages/index/index?deviceId="+this.deviceId) +'&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect')
- // redirect_uri是授权成功后,跳转的url地址,微信会帮我们跳转到该链接,并且通过?的形式拼接code
- },
- handleAgreement(){
- this.isAgreement=!this.isAgreement;
- },
- openH5(url){
- var requestPath = uni.getStorageSync('requestPath');
- uni.setStorageSync('url',requestPath+url);
- uni.navigateTo({
- url: '../home/h5'
- })
- },
- getCode(){
- var that=this;
- this.utils.getProvider()
- .then(provider => {
- console.log('当前的环境商',provider)
- if (!provider) {
- reject()
- }
- // uni登录
- uni.login({
- provider: provider,
- success: async loginRes => {
- that.code = loginRes.code
- }
- })
- })
- .catch(err => {
-
- })
- },
- wxLogin() {
- var that=this;
- if(!this.isAgreement){
- uni.showToast({
- icon:'none',
- title: "请先同意协议后再登录",
- });
- return false;
- }
- uni.showLoading({
- title:"处理中..."
- })
- this.utils.getProvider()
- .then(provider => {
- console.log('当前的环境商',provider)
- if (!provider) {
- reject()
- }
- // uni登录
- uni.login({
- provider: provider,
- success: async loginRes => {
- console.log(loginRes)
- let code = loginRes.code // 获取开发code
- var userCode=uni.getStorageSync('userCode');
- loginByMiniApp({
- // encryptedData: e.mp.detail.encryptedData,
- // iv: e.mp.detail.iv,
- code: code,
- userCode:userCode
- })
- .then( res => {
- if(res.code==200){
- uni.hideLoading();
- uni.showToast({
- icon:'none',
- title: "登录成功",
- });
- uni.setStorageSync('AppToken',res.token);
- uni.setStorageSync('userInfo',JSON.stringify(res.user));
- uni.hideLoading()
- //that.getUserInfo()
- uni.$emit('refreshLogin');
- uni.navigateBack({
- delta:1
- })
- }
- else{
- uni.hideLoading();
- uni.showToast({
- icon:'none',
- title: "授权登录失败,请重新登录",
- });
- }
-
- })
- .catch(error => {
- console.log(error)
- uni.hideLoading();
- uni.showToast({
- icon:'none',
- title: "登录接口调用失败",
- });
- })
-
- }
- })
- })
- .catch(err => {
- uni.showToast({
- icon:'none',
- title: err,
- });
- })
- },
- // 微信用户手机号登录
- phoneLogin(e) {
- var that=this;
- if(!this.isAgreement){
- uni.showToast({
- icon:'none',
- title: "请先同意协议后再登录",
- });
- return false;
- }
- uni.showLoading({
- title:"处理中..."
- })
- if (e.mp.detail.errMsg == 'getPhoneNumber:ok') {
- this.utils.getProvider()
- .then(provider => {
- console.log('当前的环境商',provider)
- if (!provider) {
- reject()
- }
- // uni登录
- uni.login({
- provider: provider,
- success: async loginRes => {
- console.log(loginRes)
- let code = loginRes.code // 获取开发code
- var userCode=uni.getStorageSync('userCode');
- loginByMiniApp({
- encryptedData: e.mp.detail.encryptedData,
- iv: e.mp.detail.iv,
- code: code,
- userCode:userCode
- })
- .then( res => {
- if(res.code==200){
- uni.hideLoading();
- uni.showToast({
- icon:'none',
- title: "登录成功",
- });
- uni.setStorageSync('AppToken',res.token);
- uni.setStorageSync('userInfo',JSON.stringify(res.user));
- uni.hideLoading()
- //that.getUserInfo()
- uni.$emit('refreshLogin');
- uni.navigateBack({
- delta:1
- })
- }
- else{
- uni.hideLoading();
- uni.showToast({
- icon:'none',
- title: "授权登录失败,请重新登录",
- });
- }
-
- })
- .catch(error => {
- console.log(error)
- uni.hideLoading();
- uni.showToast({
- icon:'none',
- title: "登录接口调用失败",
- });
- })
-
- }
- })
- })
- .catch(err => {
- uni.showToast({
- icon:'none',
- title: err,
- });
- })
-
- } else {
- uni.showToast({
- title: '已拒绝授权',
- icon: 'none',
- duration: 2000,
- })
- }
- },
- back() {
- uni.navigateBack()
- }
- }
- }
- </script>
- <style lang="scss">
- .container {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- position: relative;
- }
- .force-login-wrap {
- width: 100%;
- height: 100%;
- overflow: hidden;
- z-index: 11111;
- top: 0;
- .force-login__content {
- position: absolute;
- left: 50%;
- top: 40%;
- transform: translate(-50%, -50%);
- .logo{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .logo-img{
- border: 4upx solid #FFFFFF;
- box-shadow: 0px 5px 15px 2px rgba(0,0,0,0.1);
- border-radius: 50%;
- width: 80px;
- height: 80px;
- image{
- border-radius: 50%;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- }
-
- .title{
- margin-top: 20rpx;
- font-size: 35rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #000;
- margin-bottom: 30rpx;
- }
- }
- .login-notice {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #000;
- line-height: 44rpx;
- width: 500rpx;
- text-align: center;
- margin-bottom: 80rpx;
- }
- .btns{
- position: relative;
- width: 630rpx;
- height: 80rpx;
- .author-btn{
- z-index:100;
- position: absolute;
- width: 630rpx;
- height: 80rpx;
- background: linear-gradient(to right, #2BC7B9 0%, #2aa7B9 100%);
- background: -moz-linear-gradient(to right, #2BC7B9 0%, #2aa7B9 100%);
- // box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- }
- }
- .author-btn{
- z-index:100;
- // position: absolute;
- width: 630rpx;
- height: 80rpx;
- background: linear-gradient(to right, #2BC7B9 0%, #2aa7B9 100%);
- background: -moz-linear-gradient(to right, #2BC7B9 0%, #2aa7B9 100%);
- // box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- }
- .author-btn {
- width: 630rpx;
- height: 80rpx;
- background: linear-gradient(to right, #2BC7B9 0%, #2aa7B9 100%);
- background: -moz-linear-gradient(to right, #2BC7B9 0%, #2aa7B9 100%);
- // box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- }
- .close-btn {
- width: 630rpx;
- height: 80rpx;
- margin-top: 30rpx;
- border-radius: 40rpx;
- border: 2rpx solid #2BC7B9;
- background: none;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #2BC7B9;
- }
- }
- }
- .tips{
- margin-top: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 28rpx;
- color: #000;
- checkbox{
- }
- .btn{
- color: #2BC7B9;
- }
- }
- .wx-login{
- background: rgba(0,0,0,0.7);
- z-index: 99999;
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- .form{
- border-radius: 20rpx;
- padding: 60rpx 30rpx;
- width: 500upx;
- height: 300upx;
- background-color: #fff;
- .title{
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: bold;
-
- }
- .desc{
- font-size: 28upx;
- margin: 60upx 0upx 60upx 0upx;
- font-family: PingFang SC;
- font-weight: 500;
- }
- .btn-box{
- margin-top: 30rpx;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .btn{
- display: flex;
- align-items: center;
- justify-content: center;
- margin-left: 10upx;
- width: 50%;
- height: 80rpx;
- border-radius: 5rpx;
- background-color: #2BC7B9;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #fff;
- position: relative;
- }
- .btn-close{
- margin-right: 10upx;
- width: 50%;
- height: 80rpx;
- border-radius: 5rpx;
- border: 2rpx solid #2BC7B9;
- background: none;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #2BC7B9;
- }
- }
- }
- }
- .auth_btn{
- width: 100%;
- height: 100%;
- top:0upx;
- position: absolute;
- opacity:0.0;
- }
- </style>
|