login.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="container">
  3. <view class="bg-img">
  4. <view>欢迎来到{{appConfig.app_name}}</view>
  5. </view>
  6. <view class="content-box">
  7. <view @tap="clickGetLoginInfo">手机号快捷登录</view>
  8. <view @tap="navToPage" data-url="/pages/phoneLogin/phoneLogin">其他手机号登录</view>
  9. <view class="contract-item flex-row">
  10. <view @tap="bindContractInfo">
  11. <img class="check-icon"
  12. :src="contract_id==1?'https://qiniu.bms16.com/FjLudtM29xwqgJh5kUKR9kyhK0Lu':'https://qiniu.bms16.com/FuQZipm9g7wX6CyGQBCjK2RTXfbW'" />
  13. </view>
  14. <view @tap="bindContractInfo" style="padding-left: 8rpx;">已阅读并同意
  15. <text style="color:#0074FF"
  16. @click.native.stop="bindContractToAgreement">{{'《' + appConfig.app_name + '电动车租赁用户协议》'}}</text>和
  17. <text style="color:#0074FF" @click.native.stop="bindContractToPrivacy">《隐私协议》</text>
  18. </view>
  19. </view>
  20. </view>
  21. <view v-if="openUser" class="modal-group-view">
  22. <view class="content_view">
  23. <view class="flex-row">
  24. <img :src="appConfig.app_logo" class="mini_logo_img" mode="widthFix" />
  25. <view class="mini_app_name">{{appConfig.app_name}}</view>
  26. </view>
  27. <view class="mark_view">申请获取并验证你的手机号</view>
  28. <view class="mark_lable">快捷登录</view>
  29. <view @tap="clickFastLogin" class="mark_btn">
  30. <view class="last_phone">{{openUser.maskPhone}}</view>
  31. <view class="last_phone_mark">上次提供</view>
  32. </view>
  33. <view @tap="clickNoAllow" class="mark_btn_no">不允许</view>
  34. <view @tap="clickOtherPhone" class="other_text">使用其他号码</view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. var config = require('../../common/config.js');
  41. var common = require('../../common/common.js');
  42. var http = require('../../common/http.js');
  43. var storage = require('../../common/storage.js');
  44. var encryption = require('../../common/encryption.js')
  45. export default {
  46. data() {
  47. return {
  48. app_name: '',
  49. appConfig: null,
  50. codeGetting: false,
  51. curTime: 60,
  52. phone: '',
  53. verify_code: '',
  54. timer: null,
  55. contract_id: 0,
  56. app_version: '',
  57. accountsData: {},
  58. isSDK: 0, // 0初始化未授权 1 已授权
  59. needAuthorization: false,
  60. openUser: null
  61. };
  62. },
  63. /**
  64. * 生命周期函数--监听页面加载
  65. */
  66. onLoad: function(options) {},
  67. /**
  68. * 生命周期函数--监听页面显示
  69. */
  70. onShow: function() {
  71. const me = this
  72. let appConfig = storage.getAppConfig()
  73. console.log(appConfig,'appConfig');
  74. me.setData({
  75. appConfig: appConfig
  76. })
  77. },
  78. methods: {
  79. bindContractInfo() {
  80. if (this.contract_id == 1) {
  81. this.setData({
  82. contract_id: 0
  83. })
  84. } else {
  85. this.setData({
  86. contract_id: 1
  87. })
  88. }
  89. },
  90. bindContractToAgreement() {
  91. uni.navigateTo({
  92. url: '/pages/contract/contract?contract_id=270',
  93. success: function(res) {},
  94. fail: function(res) {},
  95. complete: function(res) {},
  96. })
  97. },
  98. bindContractToPrivacy() {
  99. uni.navigateTo({
  100. url: '/pages/contract/contract?contract_id=102',
  101. success: function(res) {},
  102. fail: function(res) {},
  103. complete: function(res) {},
  104. })
  105. },
  106. navToPage(e) {
  107. const url = e.currentTarget.dataset.url;
  108. if (!url) {
  109. return;
  110. }
  111. uni.navigateTo({
  112. url: url
  113. });
  114. },
  115. clickGetLoginInfo() {
  116. if (this.contract_id === 0) {
  117. common.simpleToast('请查阅隐私和协议')
  118. return;
  119. }
  120. const me = this
  121. common.loading()
  122. uni.login({
  123. success: function(res) {
  124. const pData = {
  125. code: res.code
  126. }
  127. http.postApi(config.API_OPENID_GET_PHONE, pData, function(resp) {
  128. uni.hideLoading()
  129. if (resp.data.code == 200) {
  130. if (resp.data.data.user === null) {
  131. common.simpleToast('一键授权失败,请使用手机号登录')
  132. uni.navigateTo({
  133. url: '/pages/phoneLogin/phoneLogin',
  134. })
  135. } else {
  136. var user = resp.data.data.user
  137. user.maskPhone = common.maskPhoneNumber(user.phone)
  138. me.setData({
  139. openUser: user
  140. })
  141. }
  142. } else {
  143. common.simpleToast('一键授权失败,请使用手机号登录')
  144. uni.navigateTo({
  145. url: '/pages/phoneLogin/phoneLogin',
  146. })
  147. }
  148. })
  149. },
  150. })
  151. },
  152. clickFastLogin() {
  153. const me = this
  154. uni.login({
  155. success: function(res) {
  156. const accountInfo = wx.getAccountInfoSync()
  157. const currentTimeStamp = parseInt(new Date().getTime() / 1000).toString();
  158. var encryptionData = currentTimeStamp + ',' + me.openUser.phone
  159. var encryptionCode = encryption.fastLoginEncryption(encryptionData)
  160. const pData = {
  161. code: res.code,
  162. open_data: encryptionCode
  163. }
  164. http.postApi(config.API_OPENID_LOGIN, pData, function(response) {
  165. if (response.data.code == 200) {
  166. me.headimg = response.data.data.baseInfo.headimg;
  167. me.user_name = response.data.data.baseInfo.user_name;
  168. const accountsData2 = {
  169. code: res.code,
  170. appid: accountInfo.miniProgram.appId,
  171. headimg: me.headimg,
  172. user_name: me.user_name,
  173. phone: me.openUser.phone,
  174. open_data: encryptionCode
  175. }
  176. storage.setUserToken(response.data.data.baseInfo.token)
  177. common.simpleToast('登录成功')
  178. uni.reLaunch({
  179. url: '/pages/index/index',
  180. })
  181. const app = getApp();
  182. let accounts = app.globalData.accountManagement
  183. accounts.push(accountsData2)
  184. if (accounts.length > 0) {
  185. accounts = accounts.filter((item, index, arr) => arr.findIndex(p =>
  186. p.phone === item.phone) === index)
  187. uni.setStorage({
  188. key: "accountManagement",
  189. data: accounts
  190. })
  191. }
  192. } else {
  193. common.simpleToast('一键授权失败,请使用手机号登录')
  194. uni.navigateTo({
  195. url: '/pages/phoneLogin/login',
  196. })
  197. }
  198. })
  199. },
  200. })
  201. },
  202. clickNoAllow() {
  203. this.setData({
  204. openUser: null
  205. })
  206. },
  207. clickOtherPhone() {
  208. uni.navigateTo({
  209. url: '/pages/phoneLogin/phoneLogin',
  210. })
  211. },
  212. }
  213. };
  214. </script>
  215. <style>
  216. @import './login.css';
  217. </style>