phoneLogin.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <view class="container">
  3. <view class="content-top">
  4. <img src="https://qiniu.bms16.com/FikV2SyfTEYQCgXjObAwwtkK27Hk" />
  5. <view>欢迎来到{{appConfig.app_name}}</view>
  6. </view>
  7. <view class="content-input flex-row flex-between">
  8. <input type="number" name="phone" @input="inputPhone" placeholder="请输入手机号" placeholder-style="color:#CBD1DD" />
  9. <view @tap="bindGetVerifyCode" class="send-code">
  10. <text v-if="codeGetting" class="g-text">重新获取 ·{{curTime}}S </text>
  11. <text v-else class="b-text">获取验证码</text>
  12. </view>
  13. </view>
  14. <view class="content-input">
  15. <input type="number" name="verify_code" @input="inputVerifyCode" placeholder="请输入验证码" placeholder-style="color:#CBD1DD" />
  16. </view>
  17. <view v-if="contract_id==1&&phone.length==11&&verify_code.length==4" @tap="bindLoginSubmit" class="submit-btn">登录</view>
  18. <view v-else class="disable-btn">登录</view>
  19. <view class="contract-item flex-row">
  20. <view @tap="bindContractInfo">
  21. <img class="check-icon" :src="contract_id==1?'https://qiniu.bms16.com/FjLudtM29xwqgJh5kUKR9kyhK0Lu':'https://qiniu.bms16.com/FuQZipm9g7wX6CyGQBCjK2RTXfbW'" />
  22. </view>
  23. <view @tap="bindContractInfo" style="padding-left: 8rpx;">已阅读并同意
  24. <text style="color:#0074FF" @click.native.stop="bindContractToAgreement">{{'《' + appConfig.app_name + '电动车租赁用户协议》'}}</text>和
  25. <text style="color:#0074FF" @click.native.stop="bindContractToPrivacy">《隐私协议》</text>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. var config = require('../../common/config.js');
  32. var common = require('../../common/common.js');
  33. var http = require('../../common/http.js');
  34. var storage = require('../../common/storage.js');
  35. export default {
  36. data() {
  37. return {
  38. codeGetting: false,
  39. curTime: 60,
  40. phone: '',
  41. verify_code: '',
  42. timer: null,
  43. contract_id: 0,
  44. accountsData: {},
  45. app_name: '',
  46. appConfig: null,
  47. };
  48. }
  49. /**
  50. * 生命周期函数--监听页面加载
  51. */
  52. ,
  53. onLoad: function(options) {
  54. },
  55. onUnload: function () {
  56. clearInterval(this.timer)
  57. },
  58. /**
  59. * 生命周期函数--监听页面显示
  60. */
  61. onShow: function() {
  62. const me = this
  63. let appConfig = storage.getAppConfig()
  64. me.setData({
  65. appConfig: appConfig
  66. })
  67. },
  68. computed: {
  69. // 计算属性用于判断是否可以登录
  70. canLogin() {
  71. return this.phone.length === 11 && this.verify_code.length === 4;
  72. }
  73. },
  74. methods: {
  75. inputPhone(e) {
  76. this.phone = e.detail.value
  77. },
  78. bindGetVerifyCode(e) {
  79. if (this.codeGetting) {
  80. return
  81. }
  82. if (!this.phone) {
  83. common.simpleToast('请输入手机号码');
  84. return;
  85. }
  86. if (!common.isPhone(this.phone)) {
  87. common.simpleToast('请检测您的手机号码是否正确');
  88. return;
  89. }
  90. this.setData({
  91. codeGetting: true
  92. })
  93. const me = this
  94. me.timer = setInterval(function () {
  95. let curTime = me.curTime - 1
  96. if (curTime === 0) {
  97. clearTimeout(me.timer);
  98. me.setData({
  99. codeGetting: false,
  100. curTime: 60
  101. })
  102. } else {
  103. me.setData({
  104. curTime: curTime
  105. })
  106. }
  107. }, 1000)
  108. const accountInfo = wx.getAccountInfoSync()
  109. http.getApi(config.API_USER_VERIFY_CODE, {
  110. appid: accountInfo.miniProgram.appId,
  111. phone: this.phone
  112. }, function (resp) {
  113. if (resp.data.code === 200) {
  114. } else {
  115. common.simpleToast(resp.data.msg);
  116. }
  117. })
  118. },
  119. inputVerifyCode(e) {
  120. this.verify_code = e.detail.value
  121. },
  122. bindContractInfo(e) {
  123. if (this.contract_id == 1) {
  124. this.setData({
  125. contract_id: 0
  126. })
  127. } else {
  128. this.setData({
  129. contract_id: 1
  130. })
  131. }
  132. },
  133. bindContractToAgreement() {
  134. uni.navigateTo({
  135. url: '/pages/contract/contract?contract_id=270',
  136. success: function (res) {},
  137. fail: function (res) {},
  138. complete: function (res) {},
  139. })
  140. },
  141. bindContractToPrivacy() {
  142. uni.navigateTo({
  143. url: '/pages/contract/contract?contract_id=102',
  144. success: function (res) {},
  145. fail: function (res) {},
  146. complete: function (res) {},
  147. })
  148. },
  149. bindLoginSubmit: function (e) {
  150. const phone = this.phone
  151. const verify_code = this.verify_code
  152. const me = this
  153. common.loading()
  154. uni.login({
  155. success: function (res) {
  156. const accountInfo = uni.getAccountInfoSync()
  157. var postData = {
  158. code: res.code,
  159. appid: accountInfo.miniProgram.appId,
  160. phone: phone,
  161. verify_code: verify_code,
  162. }
  163. http.getApi(
  164. //#ifdef APP-PLUS
  165. config.API_USER_LOGIN_V2,
  166. //#endif
  167. //#ifdef MP-WEIXIN
  168. config.API_USER_LOGIN_V2,
  169. //#endif
  170. //#ifdef MP-ALIPAY
  171. config.API_USER_LOGIN_ALI,
  172. //#endif
  173. postData, function (resp) {
  174. uni.hideLoading()
  175. if (resp.data.code === 200) {
  176. me.headimg = resp.data.data.baseInfo.headimg;
  177. me.user_name = resp.data.data.baseInfo.user_name;
  178. const accountsData2 = {
  179. code: res.code,
  180. appid: accountInfo.miniProgram.appId,
  181. verify_code: verify_code,
  182. headimg: me.headimg,
  183. user_name: me.user_name,
  184. phone: phone,
  185. }
  186. storage.setUserToken(resp.data.data.baseInfo.token)
  187. common.simpleToast('登录成功')
  188. uni.reLaunch({
  189. url: '/pages/index/index',
  190. })
  191. const app = getApp();
  192. let accounts = app.globalData.accountManagement
  193. accounts.push(accountsData2)
  194. if (accounts.length >0) {
  195. accounts= accounts.filter((item,index,arr) => arr.findIndex(p => p.phone === item.phone)===index)
  196. uni.setStorage({
  197. key: "accountManagement",
  198. data: accounts
  199. })
  200. }
  201. } else {
  202. common.simpleToast(resp.data.msg)
  203. }
  204. }, function (error) {
  205. uni.hideLoading()
  206. })
  207. },
  208. })
  209. },
  210. }
  211. };
  212. </script>
  213. <style>
  214. @import './phoneLogin.css';
  215. </style>