loginh5.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. <template>
  2. <view class="body" :style="{height:screenHeight}">
  3. <image class="login-bg" :src="staticUrl+'/img/login-bg.png'" mode="widthFix"></image>
  4. <u-toast ref="uToast"></u-toast>
  5. <view style="height: 40%;position: relative;z-index: 10;">
  6. <view class="logo-wrap">
  7. <img :src="logoSrc" class="logo" alt="">
  8. </view>
  9. <view class="btn-wrap" style="margin:94rpx">
  10. <u-button
  11. :hair-line='false'
  12. type="error"
  13. color="#ED0000"
  14. @click="disabledClick"
  15. shape="circle">登录
  16. </u-button>
  17. </view>
  18. <view class="rule-wrap u-flex u-flex-wrap u-row-center">
  19. <u-checkbox-group v-model="checked" @change="checkboxChange" placement="row">
  20. <u-checkbox activeColor="#1677FF" name="同意" labelSize="24rpx" shape="circle" label="我已阅读并同意"></u-checkbox>
  21. </u-checkbox-group>
  22. <text class="link" @click="$u.route('/pages/login/regulation',{regulationName:'用户服务协议',type:1})">《用户服务协议》</text>
  23. 和<text class="link" @click="$u.route('/pages/login/regulation',{regulationName:'用户隐私政策',type:2})">《用户隐私政策》</text>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. staticUrl:this.$commonConfig.staticUrl,
  33. checked:false,
  34. checkboxVal:null,
  35. loginBtn:true,
  36. bname:'旭烁集团',
  37. //屏幕高度
  38. screenHeight: "",
  39. logoSrc: "/static/logo.png",
  40. // sitename:"/static/sitename.png",
  41. miniappLoginInfo:null,
  42. hasUserInfo:false,
  43. userInfo: null,
  44. user:{
  45. avatar:'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0',
  46. name:'',
  47. mobile:'',
  48. },
  49. code: '',
  50. showAuthorizeUser: false,
  51. showAuthorizePhone: false,
  52. customStyleUnOk:{},
  53. customStyleOk:{'margin-left': '30px',color:'#00A447'},
  54. backUrl:null,
  55. scene:'',
  56. };
  57. },
  58. onLoad(e) {
  59. console.log("回调参数=======",e)
  60. if(e&&e.code) { // 微信第三方登录成功
  61. this.code = e.code
  62. this.login(e)
  63. }
  64. let that = this;
  65. //获取屏幕高度,我的项目再store里已经取到了
  66. uni.getSystemInfo({
  67. success: (res) => {
  68. this.screenHeight = res.windowHeight + "px"
  69. }
  70. });
  71. uni.getStorage({
  72. key: 'backUrl',
  73. success: function (res) {
  74. that.backUrl = '/'+res.data;
  75. }
  76. });
  77. },
  78. onShow() {
  79. let pages = getCurrentPages(); //当前页面栈
  80. console.log("pages=====",pages)
  81. let userInfo = uni.getStorageSync('userInfo');
  82. this.user.name = userInfo.name;
  83. },
  84. methods: {
  85. openAuth(){
  86. this.showAuthorizePhone = true;
  87. },
  88. //获取昵称输入内容
  89. // userNameInput(e){
  90. // this.user.nickName = e.detail.value
  91. // },
  92. onChooseAvatar(e) {
  93. console.log('头像信息》')
  94. console.log(e)
  95. this.user.avatar = e.detail.avatarUrl;
  96. },
  97. async login(e){
  98. // console.log('e',e);
  99. let _this = this;
  100. let wxinfo = await this.$u.api.wxinfoH5({code:this.code});
  101. let {openid,nickname} = wxinfo.data;
  102. // console.log('----------登陆中',data)
  103. this.$u.api.login({
  104. "openId": "",
  105. "h5OpenId":"openid",
  106. "mobile": ""
  107. }).then(res=>{
  108. // console.log('微信登录返回结果========',res.data)
  109. _this.$u.vuex('vuex_user_info', res.data);
  110. // _this.$u.vuex('vuex_member_info',res.data);
  111. // uni.setStorageSync('userInfo', res.data)
  112. this.showAuthorizePhone = false;
  113. uni.removeStorage({
  114. key:'scene'
  115. });
  116. // console.log('res.data.userid',res.data.userid);
  117. this.getMemberInfo(res.data.userId);
  118. }).catch(err=>{
  119. console.log('err',err);
  120. this.showAuthorizePhone = false
  121. })
  122. },
  123. /**
  124. * @author ygh
  125. * @date 2023-12-14
  126. * @param {Object} userid
  127. * 根据userId 获取用户信息
  128. */
  129. getMemberInfo(userid){
  130. // console.log('userid',userid);
  131. let _this = this;
  132. this.$u.api.memberInfo({id:userid}).then(res=> {
  133. if(res.code ===200) {
  134. _this.userInfo = res.data;
  135. this.$u.vuex('vuex_member_info', res.data);
  136. // this.$u.vuex('vuex_member_info.avatar', 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0');
  137. if(!res.data.name){
  138. this.$u.vuex('vuex_member_info.name', '微信用户');
  139. this.updateMemberInfo();
  140. }else{
  141. this.goBack();
  142. }
  143. }
  144. })
  145. },
  146. /**
  147. * @author ygh
  148. * @date 2023-12-14
  149. * 更新用户信息
  150. */
  151. updateMemberInfo(){
  152. let params ={
  153. id:this.userInfo.id,
  154. // avatar:'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0',
  155. name:'微信用户'
  156. };
  157. this.$u.api.updateMemberInfo(params).then(res=>{
  158. this.goBack();
  159. }).catch(err=>{
  160. console.log('err',err);
  161. })
  162. },
  163. goBack(){
  164. let url = this.backUrl&&this.backUrl.length>0?this.backUrl:'/pages/index/index';
  165. // console.log('url',url);
  166. uni.removeStorage({
  167. key: 'backUrl',
  168. success: function (res) {
  169. // console.log('success');
  170. uni.reLaunch({url: decodeURIComponent(url)});
  171. }
  172. });
  173. },
  174. checkboxChange(e){
  175. this.checkboxVal = e[0];
  176. },
  177. disabledClick(){
  178. console.log("this.checked====",this.checked)
  179. // console.log('checked',this.checked?.length);
  180. // console.log('loginBtn',this.loginBtn);
  181. if(!this.checked||this.checked?.length<=0){
  182. uni.showToast({
  183. title:'请先同意使用条款!',
  184. icon:'none'
  185. })
  186. }else{
  187. uni.showToast({
  188. title:'登录中!',
  189. icon:'none'
  190. })
  191. this.redirectToAuth()
  192. }
  193. },
  194. /** 微信授权登录 */
  195. redirectToAuth() {
  196. const appid = 'wx6490eaa0d20d2be2';
  197. const redirectUri = encodeURIComponent('https://greath5.dev.gztjy.top/pages/login/loginh5');
  198. 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`;
  199. window.location.href = authUrl;
  200. },
  201. getAccessToken() {
  202. const code = (new URLSearchParams(window.location.search)).get('code');
  203. if (code) {
  204. const appid = 'wx6490eaa0d20d2be2';
  205. const requestUrl = `https://api.weixin.qq.com/sns/oauth2/access_token?appid=${appid}&secret=YOUR_APP_SECRET&code=${code}&grant_type=authorization_code`;
  206. fetch(requestUrl)
  207. .then(response => response.json())
  208. .then(data => {
  209. if (data && data.openid) {
  210. const openid = data.openid;
  211. // 在这里可以存储或使用用户的openid
  212. // ...
  213. }
  214. })
  215. .catch(error => {
  216. console.error(error);
  217. });
  218. }
  219. }
  220. }
  221. }
  222. </script>
  223. <style lang="scss" scoped>
  224. .login-bg{
  225. position: fixed;
  226. left: 0;
  227. right: 0;
  228. bottom: 0;
  229. width: 100%;
  230. }
  231. .body {
  232. background-color: #fff;
  233. box-sizing: border-box;
  234. text-align: center;
  235. .logo-wrap {
  236. padding-top: 248rpx;
  237. img{
  238. display: block;
  239. margin: 0 auto;
  240. }
  241. .logo{
  242. width: 306rpx;
  243. height: 258rpx;
  244. }
  245. .sitename{
  246. width: 460rpx;
  247. height: 142rpx;
  248. }
  249. }
  250. }
  251. //
  252. .auth-btncard{
  253. margin-top: 20px;
  254. .btn-unok{
  255. width: 45%;
  256. float: left;
  257. }
  258. .btn-ok{
  259. width: 45%;
  260. float: left;
  261. margin: 0;
  262. padding: 0;
  263. border: 0px solid transparent; //自定义边框
  264. outline: none; //消除默认点击蓝色边框效果
  265. u-button{
  266. font-size: 16px;
  267. margin: 0;
  268. padding: 0;
  269. // border: 0px solid transparent; //自定义边框
  270. outline: none; //消除默认点击蓝色边框效果
  271. }
  272. }
  273. }
  274. .auth-card{
  275. text-align: center;
  276. .avatar-img{
  277. width: 150rpx;
  278. height: 150rpx;
  279. overflow: hidden;
  280. border-radius: 100%;
  281. margin-top: 30rpx;
  282. }
  283. .title{
  284. font-size: 30rpx;
  285. }
  286. .content{
  287. margin-top: 10rpx;
  288. margin-bottom: 20rpx;
  289. }
  290. }
  291. .avatar-wrapper{
  292. width: 150rpx;
  293. height: 100rpx;
  294. color: #333 !important;
  295. text-align: center !important;
  296. border: none !important;
  297. border-radius:0 !important;
  298. background-color:transparent !important;
  299. }
  300. .avatar-wrapper::after {
  301. border: none !important;
  302. }
  303. .avatar{
  304. width: 100rpx;
  305. height: 100rpx;
  306. overflow: hidden;
  307. border-radius: 100%;
  308. }
  309. .rule-wrap{
  310. position: fixed;
  311. left: 0;
  312. right: 0;
  313. bottom: 20px;
  314. margin: 40rpx auto;
  315. font-size: 24rpx;
  316. line-height: 1.5;
  317. .link{
  318. white-space: nowrap;
  319. color: #1677FF;
  320. }
  321. }
  322. </style>