Selaa lähdekoodia

1. 新增公众号登录

MONSTER-ygh 1 vuosi sitten
vanhempi
commit
1a3ae0ffb3
8 muutettua tiedostoa jossa 175 lisäystä ja 309 poistoa
  1. 12 0
      common/apiurl.js
  2. 1 1
      common/config.js
  3. 5 1
      common/http.api.js
  4. 9 3
      manifest.json
  5. 15 15
      pages.json
  6. 65 3
      pages/login/login.vue
  7. 67 285
      pages/login/loginh5.vue
  8. 1 1
      wxapi.js

+ 12 - 0
common/apiurl.js

@@ -163,6 +163,18 @@ const apiurl = {
 		type: 'get'
 	},
 	
+	
+	/**
+	 * @author ygh
+	 * @date 2023-12-14
+	 * 公众号获取openid
+	 * 
+	 * */
+	wxinfoH5: {
+		url: '/member/wechat/h5/code/',
+		type: 'get',
+		addUrl: true
+	},
 }
 
 

+ 1 - 1
common/config.js

@@ -12,7 +12,7 @@
 // }
 
 //64
-let baseUrl='https://greatadmin.dev.gztjy.top/serviceapi';
+let baseUrl='https://greath5.dev.gztjy.top/serviceapi';
 let upFileUrl='http://fileupload.hw.hongweisoft.com/upload/single/minio';
 // let staticUrl='http://res.hw.hongweisoft.com/xushuo/';
 let staticUrl='https://miniores.hw.hongweisoft.com/greattransition/staticfile';

+ 5 - 1
common/http.api.js

@@ -13,7 +13,11 @@ const install = (Vue, vm) => {
 	// 循环请求路径对象生成对应的方式请求
 	Object.keys(apiurl).forEach((key) => {
 		if(apiurl[key]?.type=='get'){
-			httpMap[key] = (data = {}, config = {}) => http[apiurl[key]?.type](apiurl[key]?.url, {params:data}, config);
+			if(apiurl[key].addUrl){
+				httpMap[key] = (data = {}, config = {}) => http[apiurl[key]?.type](apiurl[key]?.url+data.code, {}, config);
+			}else {
+				httpMap[key] = (data = {}, config = {}) => http[apiurl[key]?.type](apiurl[key]?.url, {params:data}, config);
+			}
 		} else if (apiurl[key]?.type == 'delete') {
 			httpMap[key] = (data = {}, config = {}) => http[apiurl[key]?.type](apiurl[key]?.url + `${queryParams(data)}`, {}, config);
 		} else{

+ 9 - 3
manifest.json

@@ -84,7 +84,7 @@
         "devServer" : {
             "proxy" : {
                 "/api" : {
-					"disableHostCheck" : true,
+                    "disableHostCheck" : true,
                     "target" : "https://xusfoodapi.hw.hongweisoft.com/appapi/app", //请求的目标域名
                     "changeOrigin" : true,
                     "secure" : false,
@@ -93,11 +93,17 @@
                         "^/api" : ""
                     }
                 }
-            }
+            },
+            "https" : false
         },
         "sdkConfigs" : {
             "maps" : {}
-        }
+        },
+        "title" : "伟大转折",
+        "router" : {
+            "mode" : "history"
+        },
+        "template" : "index.html"
     },
     "fallbackLocale" : "zh-Hans"
 }

+ 15 - 15
pages.json

@@ -1,26 +1,26 @@
 {
 	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
-		// {
-		// 	"path": "pages/index/index",
-		// 	"style": {
-		// 		"navigationBarTitleText": "首页",
-		// 		"navigationStyle": "custom"
-		// 	}
-		// },
-		// {
-		// 	"path": "pages/login/login",
-		// 	"style": {
-		// 		"navigationBarTitleText": "登录",
-		// 		"navigationStyle": "custom"
-		// 	}
-		// },
 		{
-			"path": "pages/login/loginh5",
+			"path": "pages/index/index",
+			"style": {
+				"navigationBarTitleText": "首页",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/login/login",
 			"style": {
 				"navigationBarTitleText": "登录",
 				"navigationStyle": "custom"
 			}
 		},
+		// {
+		// 	"path": "pages/login/loginh5",
+		// 	"style": {
+		// 		"navigationBarTitleText": "登录",
+		// 		"navigationStyle": "custom"
+		// 	}
+		// },
 		{
 			"path": "pages/login/regulation",
 			"style": {

+ 65 - 3
pages/login/login.vue

@@ -14,6 +14,7 @@
 			<!-- <u-button v-if="loginBtn" text="手机号快捷登录" type="success" :hairline="false" throttleTime="2000" shape="circle" 
 				@click="openAuth"></u-button> -->
 			<view class="btn-wrap" style="margin:94rpx">
+				<!-- #ifdef MP -->
 				<u-button
 					v-if="loginBtn&&checked.length>0" 
 					:hair-line='false' 
@@ -32,6 +33,16 @@
 					@click="disabledClick"
 					shape="circle">登录
 				</u-button>
+				<!-- #endif -->
+				<!-- #ifdef H5 -->
+				<u-button
+					:hair-line='false' 
+					type="error" 
+					color="#ED0000"
+					@click="disabledClick"
+					shape="circle">登录
+				</u-button>
+				<!-- #endif -->
 			</view>
 			<view class="rule-wrap u-flex u-flex-wrap u-row-center">
 				<u-checkbox-group v-model="checked" @change="checkboxChange" placement="row">
@@ -125,7 +136,14 @@
 				scene:'',
 			};
 		},
-		onLoad() {
+		onLoad(e) {
+			// #ifdef H5
+			console.log("回调参数=======",e)
+			if(e&&e.code) { // 微信第三方登录成功
+				this.code = e.code
+				this.login(e)
+			}
+			// #endif
 			let that = this;
 			//获取屏幕高度,我的项目再store里已经取到了
 			uni.getSystemInfo({
@@ -141,6 +159,11 @@
 			});
 		},
 		onShow() {
+			// #ifdef H5
+			let pages = getCurrentPages(); //当前页面栈
+			console.log("pages=====",pages)
+			// #endif
+			// #ifdef MP
 			// uni.showLoading({
 			// 	mask:true
 			// });
@@ -149,6 +172,7 @@
 			// 	this.openAuth();
 			// 	// this.showAuthorizeUser = true //弹出头像用户名
 			// }, 100);
+			// #endif
 			let userInfo = uni.getStorageSync('userInfo');
 			this.user.name = userInfo.name;
 		},
@@ -250,12 +274,15 @@
 				// console.log('e',e);
 				let _this = this;
 				let wxinfo = await this.$u.api.wxinfo({code:this.code});
+				let data = {}
+				// #ifdef MP
 				let {openid,sessionKey,unionid} = wxinfo.data;
 				
 				_this.$u.vuex('vuex_wechatOpenid', openid);
 				const { errMsg, iv, encryptedData } = e.detail;
 				if (errMsg !== 'getPhoneNumber:ok') return;
-				let data = {
+				
+				data = {
 					code: this.code,
 					encryptedData: encryptedData,
 					ivStr: iv,
@@ -264,6 +291,7 @@
 					sourceType:1,
 					mobile:this.mobile
 				}
+				
 				if(this.scene&&this.scene!='undefined'){
 					await this.$u.api.uncompress({scene:this.scene}).then(res=>{
 						data.agentId = res.data.agentId;
@@ -274,6 +302,16 @@
 						console.log('uncompress',err);
 					})
 				}
+				// #endif
+				
+				// #ifdef H5
+				let { openid } = wxinfo.data;
+				data = {
+					"openId": "",
+					"h5OpenId": openid,
+					"mobile": ""
+				}
+				// #endif
 				// console.log('----------登陆中',data)
 				this.$u.api.login(data).then(res=>{
 					// console.log('微信登录返回结果========',res.data)
@@ -388,6 +426,7 @@
 			disabledClick(){
 				// console.log('checked',this.checked?.length);
 				// console.log('loginBtn',this.loginBtn);
+				// #ifdef MP
 				if(!this.checked||this.checked?.length<=0){
 					uni.showToast({
 						title:'请先同意使用条款!',
@@ -399,8 +438,31 @@
 						icon:'none'
 					})
 				}
+				// #endif
 				
-			}
+				// #ifdef H5 
+				if(!this.checked||this.checked?.length<=0){
+					uni.showToast({
+						title:'请先同意使用条款!',
+						icon:'none'
+					})
+				}else{
+					uni.showToast({
+						title:'登录中!',
+						icon:'none'
+					})
+					this.redirectToAuth()
+				}
+				// #endif
+			},
+			/**  公众号 微信授权登录  */
+			redirectToAuth() {
+			    const appid = 'wx6490eaa0d20d2be2';
+			    const redirectUri = encodeURIComponent('https://greath5.dev.gztjy.top/pages/login/loginh5');
+			    const authUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${redirectUri}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`;
+			 
+			    window.location.href = authUrl;
+			},
 		}
 	}
 </script>

+ 67 - 285
pages/login/loginh5.vue

@@ -5,37 +5,9 @@
 		<view style="height: 40%;position: relative;z-index: 10;">
 			<view class="logo-wrap">
 				<img :src="logoSrc" class="logo" alt="">
-				<!-- <img :src="sitename" class="sitename" alt=""> -->
-<!-- 				<u--image :src="logoSrc" width="200rpx" height="200rpx"></u--image>
-				<u--image :src="sitename" width="460rpx" height="142rpx"></u--image> -->
 			</view>
-			<!-- <u-button text="getUserProfile" type="success" :hairline="false" throttleTime="2000" shape="circle" open-type="getUserProfile"
-				@click="getUserProfile"></u-button> -->
-			<!-- <u-button v-if="loginBtn" text="手机号快捷登录" type="success" :hairline="false" throttleTime="2000" shape="circle" 
-				@click="openAuth"></u-button> -->
 			<view class="btn-wrap" style="margin:94rpx">
-				<!-- <u-button
-					v-if="loginBtn&&checked.length>0" 
-					:hair-line='false' 
-					type="error" 
-					color="#ED0000"
-					throttleTime="2000" 
-					shape="circle" 
-					open-type="getPhoneNumber" 
-					@getphonenumber="authPhone">登录
-				</u-button> -->
 				<u-button
-					v-if="loginBtn&&checked.length>0" 
-					:hair-line='false' 
-					type="error" 
-					color="#ED0000"
-					throttleTime="2000" 
-					shape="circle" 
-					open-type="getUserInfo" 
-					@getphonenumber="wxLogin">登录
-				</u-button>
-				<u-button
-					v-else
 					:hair-line='false' 
 					type="error" 
 					color="#ED0000"
@@ -51,57 +23,6 @@
 				和<text class="link" @click="$u.route('/pages/login/regulation',{regulationName:'用户隐私政策',type:2})">《用户隐私政策》</text>
 			</view>
 		</view>
-		
-		<!-- 微信获取手机号弹窗 -->
-	  <!-- <u-modal :show="showAuthorizePhone" :show-title="false"
-				 :show-confirm-button="false">
-			<view class="slot-content">
-				<div class="auth-card">
-					<div class="img">
-						<img class="avatar-img" :src="logoSrc" mode="widthFix">
-					</div>
-					<div class="title">{{bname}}</div>
-					<div class="content">申请获得您的手机号</div>
-				</div>
-				<div class="auth-btncard u-flex u-row-between">
-					<div class="btn-unok"><u-button :hair-line='false' :custom-style="customStyleUnOk" @click="showAuthorizePhone=false">拒绝</u-button></div>
-					<div class="btn-ok"><u-button :hair-line='false' :custom-style="customStyleOk" open-type="getPhoneNumber" @getphonenumber="authPhone"> 允许</u-button></div>
-				</div>
-			</view>
-		</u-modal> -->
-		<!-- 微信获取用户头像昵称弹窗 -->
-		<!-- <u-modal :show="showAuthorizeUser" :show-title="false"
-		                 :show-confirm-button="false">
-		    <view class="slot-content">
-		        <div class="auth-card">
-		            <div class="img">
-		                <img class="avatar-img"
-		                     :src="logoSrc"
-		                     mode="widthFix">
-		            </div>
-		            <div class="title">{{bname}}</div>
-		            <div class="content">邀请您补全个人信息<br></br>(昵称、头像)</div>
-		        <div style="margin-left: 100rpx;margin-right: 100rpx">
-		            <u-form :model="user" ref="uForm">
-		                <u-form-item label="头像">
-		                    <button class="avatar-wrapper" open-type="chooseAvatar" @chooseavatar="onChooseAvatar" slot="right">
-		                        <image class="avatar" :src="user.avatar"></image>
-		                    </button>
-		                </u-form-item>
-		                <u-form-item label="昵称">
-		                    <input type="nickname" class="weui-input u-border-bottom" @blur="nickNameInput" placeholder="请输入昵称"/>
-		                </u-form-item>
-		            </u-form>
-		        </div>
-		        </div>
-		    <div class="auth-btncard">
-		        <div class="btn-unok"><u-button :hair-line='false' :custom-style="customStyleUnOk" @click="showAuthorizeUser=false"> 拒绝</u-button></div>
-		        <div class="btn-ok"><u-button :hair-line='false' :custom-style="customStyleOk" @click="authUser"> 允许</u-button></div>
-		    </div>
-		    </view>
-		</u-modal> -->
-
-
 	</view>
 </template>
 
@@ -135,7 +56,12 @@
 				scene:'',
 			};
 		},
-		onLoad() {
+		onLoad(e) {
+			console.log("回调参数=======",e)
+			if(e&&e.code) { // 微信第三方登录成功
+				this.code = e.code
+				this.login(e)
+			}
 			let that = this;
 			//获取屏幕高度,我的项目再store里已经取到了
 			uni.getSystemInfo({
@@ -151,60 +77,14 @@
 			});
 		},
 		onShow() {
-			// uni.showLoading({
-			// 	mask:true
-			// });
-			this.getChatCode();
-			// setTimeout(() => {
-			// 	this.openAuth();
-			// 	// this.showAuthorizeUser = true //弹出头像用户名
-			// }, 100);
+			let pages = getCurrentPages(); //当前页面栈
+			console.log("pages=====",pages)
 			let userInfo = uni.getStorageSync('userInfo');
 			this.user.name = userInfo.name;
 		},
 		methods: {
 			openAuth(){
 				this.showAuthorizePhone = true;
-				// let userInfo = uni.getStorageSync('userInfo')
-				// console.log('userInfo>>>>>>>>>>>>>>>>>>>>>',userInfo)
-				// if(userInfo){
-				// 	this.showAuthorizeUser = true;
-				// }else{
-				// 	this.showAuthorizePhone = true;
-				// }
-				// uni.hideLoading()
-			},
-			getChatCode() {
-				//因为作用域先提前赋值
-				var that = this
-				//使用uni封装的一键登录方法
-				uni.login({
-					provider: 'weixin',
-					success(res) {
-						//成功后带着微信登录返回的code去请求我们的后端
-						that.code = res.code;
-						// console.log('code',that.code);
-					}
-				})
-			},
-			getUserProfile() {
-				var that = this
-				uni.getUserProfile({
-					desc: "获取你的昵称、头像",
-					success(res) {
-						console.log('getUserProfile success',res);
-						if (res.errMsg == "getUserProfile:ok" && res.userInfo != undefined) {
-							//我用store来存储一些数据,你可以放到你要放的地方
-							console.log(' res.userInfo', res.userInfo);
-							// that.$u.vuex('wx_user_info.nickName', res.userInfo.nickName);
-							// that.$u.vuex('wx_user_info.avatarUrl', res.userInfo.avatarUrl);
-							// that.getChatCode()
-						}
-					},
-					complete(res) {
-						// console.log('complete',res);
-					}
-				})
 			},
 			//获取昵称输入内容
 			// userNameInput(e){
@@ -215,77 +95,18 @@
 				console.log(e)
 				this.user.avatar = e.detail.avatarUrl;
 			},
-			async authPhone(e){
-				console.log('checked',this.checked);
-				console.log('detail',e.detail);
-				let errMsg = e.detail?.errMsg;
-				if(errMsg!='getPhoneNumber:ok'){
-					uni.showToast({
-						title:'您已拒绝使用!',
-						icon:'error'
-					})
-					return					
-				}
-				this.showAuthorizePhone=false;
-				this.loginBtn = false;
-				let _this = this;
-				
-				await uni.getStorage({
-					key: 'scene',
-					success: function (res) {
-						// console.log('scene====',res.data);
-						if(res.data){
-							_this.scene = res.data
-						}
-					}
-				});
-				
-				// this.getMobile()
-				let mobileData = await this.$u.api.getMobile({code:e.detail.code});
-				// console.log('mobileData',mobileData);
-				let mobile = mobileData.data?.mobile;
-				if(mobile){
-					this.mobile = mobile
-				}else{
-					// uni.showToast({
-					// 	title: '没有获取手机号',
-					// 	icon:'error',
-					// 	duration: 2000
-					// });
-				}
-				this.login(e);
-				this.loginBtn = true;
-			},
 			async login(e){
 				// console.log('e',e);
 				let _this = this;
-				let wxinfo = await this.$u.api.wxinfo({code:this.code});
-				let {openid,sessionKey,unionid} = wxinfo.data;
-				
-				_this.$u.vuex('vuex_wechatOpenid', openid);
-				const { errMsg, iv, encryptedData } = e.detail;
-				if (errMsg !== 'getPhoneNumber:ok') return;
-				let data = {
-					code: this.code,
-					encryptedData: encryptedData,
-					ivStr: iv,
-					openId:openid,
-					sessionKey,
-					sourceType:1,
-					mobile:this.mobile
-				}
-				if(this.scene&&this.scene!='undefined'){
-					await this.$u.api.uncompress({scene:this.scene}).then(res=>{
-						data.agentId = res.data.agentId;
-						data.agentShopId = res.data.agentShopId;
-						data.sourceType = 2;
-						// console.log('uncompress',res.data);
-					}).catch(err=>{
-						console.log('uncompress',err);
-					})
-				}
+				let wxinfo = await this.$u.api.wxinfoH5({code:this.code});
+				let {openid,nickname} = wxinfo.data;
+
 				// console.log('----------登陆中',data)
-				this.$u.api.login(data).then(res=>{
+				this.$u.api.login({
+					"openId": "",
+					"h5OpenId":"openid",
+					"mobile": ""
+				}).then(res=>{
 					// console.log('微信登录返回结果========',res.data)
 					_this.$u.vuex('vuex_user_info', res.data);
 					// _this.$u.vuex('vuex_member_info',res.data);
@@ -302,6 +123,12 @@
 					this.showAuthorizePhone = false
 				})
 			},
+			/**
+			 * @author ygh
+			 * @date 2023-12-14
+			 * @param {Object} userid
+			 * 根据userId 获取用户信息
+			 */
 			getMemberInfo(userid){
 				// console.log('userid',userid);
 				let _this = this;
@@ -316,33 +143,14 @@
 						}else{
 							this.goBack();
 						}
-						// 下面需要获取微信头像和昵称
-						// if(res.data.name){
-						// 	_this.hasUserInfo = true;
-						// 	_this.userInfo = res.data;
-						// 	uni.navigateTo({
-						// 		url: '/pages/index/index'
-						// 	})
-						// }else{
-						// 	_this.showAuthorizeUser = true
-						// 	// uni.hideLoading()
-						// }
-						// console.log('---------登陆成功')
-						
 					}
 				})
 			},
-			goBack(){
-				let url = this.backUrl&&this.backUrl.length>0?this.backUrl:'/pages/index/index';
-				// console.log('url',url);
-				uni.removeStorage({
-					key: 'backUrl',
-					success: function (res) {
-						// console.log('success');
-						uni.reLaunch({url: decodeURIComponent(url)});
-					}
-				});
-			},
+			/**
+			 * @author ygh 
+			 * @date 2023-12-14
+			 * 更新用户信息
+			 */
 			updateMemberInfo(){
 				let params ={
 					id:this.userInfo.id,
@@ -355,47 +163,22 @@
 					console.log('err',err);
 				})
 			},
-			authUser(){
-				let userInfo = this.vuex_user_info || {};
-				// console.log('this===',this);
-				// console.log('vuex_user_info===',this.vuex_user_info);
-				// console.log('userInfo',userInfo);
-				// console.log('this.user',this.user);
-				if(!this.user.name){
-					uni.showToast({
-						title: '请输入您的昵称!',
-						icon:'error',
-						duration: 2000
-					});
-					return;
-				}
-				userInfo.avatar = this.user.avatar;
-				userInfo.name =  this.user.name;
-				this.userInfo = userInfo;
-				uni.setStorageSync('userInfo', userInfo)
-				this.user.id = userInfo.userid;
-				let param = {
-					id:this.user.id,
-					name:this.user.name,
-					avatar:this.user.avatar
-				}
-				this.$u.api.updateMemberInfo(param).then(res=>{
-					this.hasUserInfo = true;
-					this.showAuthorizeUser = false;
-					uni.navigateTo({
-						url: '/pages/index/index'
-					})
-				}).catch(err=>{
-					console.log('err',err);
-				})
-			},
-			nickNameInput(e){
-				this.user.name = e.detail.value
+			goBack(){
+				let url = this.backUrl&&this.backUrl.length>0?this.backUrl:'/pages/index/index';
+				// console.log('url',url);
+				uni.removeStorage({
+					key: 'backUrl',
+					success: function (res) {
+						// console.log('success');
+						uni.reLaunch({url: decodeURIComponent(url)});
+					}
+				});
 			},
 			checkboxChange(e){
 				this.checkboxVal = e[0];
 			},
 			disabledClick(){
+				console.log("this.checked====",this.checked)
 				// console.log('checked',this.checked?.length);
 				// console.log('loginBtn',this.loginBtn);
 				if(!this.checked||this.checked?.length<=0){
@@ -403,42 +186,41 @@
 						title:'请先同意使用条款!',
 						icon:'none'
 					})
-				}else if(this.loginBtn==false){
+				}else{
 					uni.showToast({
 						title:'登录中!',
 						icon:'none'
 					})
+					this.redirectToAuth()
 				}
 			},
-			wxLogin(e){
-				let serf = this
-				let userinfo = e.detail.userInfo
-				uni.login({
-					provider:'weixin',
-					success(res){
-						let code = res.code
-						let params = {
-							code:code,
-							sex:userinfo.gender,
-							headImgUrl:userinfo.avatarUrl,
-							nickname:userinfo.nickName
-						}
-						serf.$u.api.login(params).then(res=>{
-							serf.setLogin(res.retBody)
-							if(serf.backUrl == '' || !serf.backUrl){
-								uni.switchTab({
-									url: '/pages/userCenter/userCenter'
-								})
-							}else{
-								uni.navigateTo({
-									url:serf.backUrl
-								})
-							}
-						}).catch(err=>{
-							console.log('login',err);
-						})
-					}
-				})
+			/**  微信授权登录  */
+			redirectToAuth() {
+			    const appid = 'wx6490eaa0d20d2be2';
+			    const redirectUri = encodeURIComponent('https://greath5.dev.gztjy.top/pages/login/loginh5');
+			    const authUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${redirectUri}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`;
+			 
+			    window.location.href = authUrl;
+			},
+			
+			getAccessToken() {
+				const code = (new URLSearchParams(window.location.search)).get('code');
+				if (code) {
+				    const appid = 'wx6490eaa0d20d2be2';
+				    const requestUrl = `https://api.weixin.qq.com/sns/oauth2/access_token?appid=${appid}&secret=YOUR_APP_SECRET&code=${code}&grant_type=authorization_code`;
+				    fetch(requestUrl)
+				    .then(response => response.json())
+				    .then(data => {
+				        if (data && data.openid) {
+				            const openid = data.openid;
+				            // 在这里可以存储或使用用户的openid
+				            // ...
+				        }
+				    })
+				    .catch(error => {
+				        console.error(error);
+				    });
+				}
 			}
 		}
 	}

+ 1 - 1
wxapi.js

@@ -59,7 +59,7 @@ export default {
 				"chooseCard",
 				"openCard"
 			],
-			...(await $http.get(url,{url:href})).retBody,
+			// ...(await $http.get(url,{url:href})).retBody,
 		});
 		wx.ready(e => {
 			/**