phoneLogin - 副本.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <template>
  2. <view class="wrap">
  3. <view class="content">
  4. <view class="title">手机号登录</view>
  5. <input class="u-border-bottom" type="number" maxlength="11" v-model="tel" placeholder="请输入手机号" />
  6. <view class="u-text-center u-type-error u-m-t-20" v-if="telError">手机号输入错误</view>
  7. <button @tap="submit" :style="[inputStyle]" class="getCaptcha">获取短信验证码</button>
  8. <u-message-input v-if="show" :focus="true" :value="messageCode" @change="change" @finish="finish"
  9. mode="bottomLine" :maxlength="codelength"></u-message-input>
  10. </view>
  11. <!-- <view class="u-text-center u-type-error" v-if="phoneError">手机号输入错误</view> -->
  12. <view class="captcha">
  13. <!-- <text v-if="show&&this.messageDisable==false" @tap="noCaptcha">收不到验证码点这里</text> -->
  14. <text v-if="messageShow">{{ second }}秒后可重新获取验证码</text>
  15. </view>
  16. <view class="buttom">
  17. <view class="hint u-text-center">
  18. 登录代表同意
  19. <text class="link" @tap="jumpToPage(1)">《用户服务条款》</text>和
  20. <text class="link" @tap="jumpToPage(2)">《隐私政策》</text>
  21. 并授权使用您的账号信息(如昵称、头像、收货地址)以便您统一管理
  22. </view>
  23. </view>
  24. <u-toast ref="uToast" />
  25. </view>
  26. </template>
  27. <script>
  28. import getUrlParams from "./../../../utils/getUrlParams.js";
  29. export default {
  30. data() {
  31. return {
  32. tel: '',
  33. messageCode: '',
  34. messageShow: false,
  35. messageDisable: false,
  36. codelength: 4,
  37. show: false,
  38. second: 60,
  39. toastMsg: '',
  40. toastUrl: '',
  41. toastType: '',
  42. accessToken: '',
  43. userId: '',
  44. telError: false,
  45. // messageError:false
  46. }
  47. },
  48. onLoad(page) {
  49. // 如果存在code 则认为是微信登录完成后跳转过来的,直接获取信息跳转首页或者指定页面
  50. let locationLocaturl = window.location.search;
  51. this.code = getUrlParams(locationLocaturl, "code"); // 截取code
  52. if (this.code) {
  53. this.handleGetWXInfo(this.code) //把code传给后台获取用户信息
  54. }
  55. },
  56. computed: {
  57. inputStyle() {
  58. let style = {};
  59. if (this.tel.length == 11 && this.messageDisable == false && this.$u.test.mobile(this.tel)) {
  60. style.color = "#fff";
  61. style.backgroundColor = '#5295F5';
  62. this.telError = false;
  63. // style.backgroundColor = this.$u.color['warning'];
  64. } else if (this.tel.length == 11 && !this.$u.test.mobile(this.tel)) {
  65. this.telError = true;
  66. }
  67. return style;
  68. }
  69. },
  70. methods: {
  71. showToast() {
  72. this.$refs.uToast.show({
  73. title: this.toastMsg,
  74. type: this.toastType,
  75. url: this.toastUrl
  76. })
  77. },
  78. submit() {
  79. if (this.$u.test.mobile(this.tel) && this.messageDisable == false) {
  80. let that = this;
  81. this.$u.api.getPhoneLoginCode({
  82. mobile: this.tel
  83. })
  84. .then(res => {
  85. this.messageDisable = true;
  86. this.messageShow = true;
  87. this.show = true;
  88. let interval = setInterval(() => {
  89. that.second--;
  90. if (that.second <= 0) {
  91. that.messageDisable = false
  92. that.messageShow = false;
  93. if (that.messageCode.lenth != 4) {
  94. // this.messageError = true;
  95. }
  96. clearInterval(interval);
  97. that.second = 60;
  98. }
  99. }, 1000);
  100. this.accessToken = res.data.accessToken;
  101. this.userId = res.data.userId;
  102. }).catch(err => {
  103. this.toastMsg = err.code + ":" + err.msg;
  104. this.showToast();
  105. });
  106. }
  107. },
  108. // 收不到验证码选择时的选择
  109. // noCaptcha() {
  110. // uni.showActionSheet({
  111. // itemList: ['重新获取验证码', '接听语音验证码'],
  112. // success: function(res) {
  113. // },
  114. // fail: function(res) {
  115. // }
  116. // });
  117. // },
  118. // change事件侦听
  119. change(value) {
  120. // console.log('change', value);
  121. },
  122. // 输入完验证码最后一位执行
  123. finish(value) {
  124. let params = {
  125. accessToken: this.accessToken,
  126. userId: this.userId,
  127. code: value
  128. };
  129. this.$u.api.phoneLoginAuth(params)
  130. .then(res => {
  131. if (res.code == '200') {
  132. this.$u.vuex('vuex_token', this.accessToken);
  133. this.$u.vuex('vuex_user', res.data);
  134. this.$u.vuex('vuex_hasLogin', true);
  135. this.wechatLogin()
  136. } else {
  137. this.toastMsg = res.msg;
  138. this.showToast();
  139. }
  140. }).catch(err => {
  141. this.toastMsg = err.msg;
  142. this.showToast();
  143. });
  144. },
  145. // 微信登录
  146. wechatLogin() {
  147. this.jumpIndex()
  148. // const openId = this.$store.state.vuex_wxinfo?.openId
  149. // if (openId) {
  150. // this.jumpIndex()
  151. // } else {
  152. // this.getCode()
  153. // }
  154. },
  155. // 微信已登录则跳转到首页
  156. jumpIndex() {
  157. let ret = localStorage.getItem('backUrl')
  158. if (ret && ret.indexOf('phoneLogin') < 0) {
  159. // 截取url
  160. const pagesIndex = ret.indexOf('pages')
  161. if (pagesIndex > (-1)) {
  162. const pageUrl = ret.slice(pagesIndex)
  163. const tabbarUrl = ['pages/center/index', 'pages/parkingLists/parkingLists']
  164. if (tabbarUrl.indexOf(pageUrl) > (-1)) {
  165. setTimeout(() => {
  166. uni.switchTab({
  167. url: '../../index/index'
  168. })
  169. }, 100)
  170. } else {
  171. setTimeout(() => {
  172. uni.navigateTo({
  173. url: '/' + pageUrl
  174. })
  175. }, 100)
  176. }
  177. } else {
  178. uni.switchTab({
  179. url: '../../index/index'
  180. })
  181. }
  182. } else {
  183. uni.switchTab({
  184. url: '../../index/index'
  185. })
  186. }
  187. },
  188. // 获取code
  189. getCode() {
  190. const local = window.location.href // 获取页面url
  191. let locationLocaturl = window.location.search;
  192. this.code = getUrlParams(locationLocaturl, "code"); // 截取code
  193. if (this.code) { // 如果没有code,则去请求
  194. this.handleGetWXInfo(this.code) //把code传给后台获取用户信息
  195. } else {
  196. window.location.href =
  197. `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${this.config.wxAppid}&redirect_uri=${encodeURIComponent(local)}&response_type=code&scope=snsapi_userinfo&#wechat_redirect`
  198. }
  199. },
  200. // 通过code获取 openId等用户信息,/api/user/wechat/login 为后台接口
  201. handleGetWXInfo(code) {
  202. uni.showLoading({
  203. title: '加载中'
  204. })
  205. this.$u.api.getWXInfo(code).then((res) => {
  206. if (res.code === 200) {
  207. this.$u.vuex('vuex_wxinfo', res.data);
  208. this.jumpIndex()
  209. } else {
  210. this.$refs.uToast.show({
  211. title: '获取用户信息失败!',
  212. type: 'error',
  213. });
  214. }
  215. uni.hideLoading()
  216. }).catch((err) => {
  217. this.$refs.uToast.show({
  218. title: '获取用户信息失败!',
  219. type: 'error',
  220. });
  221. })
  222. },
  223. /**
  224. * 跳转页面
  225. * */
  226. jumpToPage(flag) {
  227. uni.navigateTo({
  228. url: "/pages/privacyPolicy/privacyPolicy?termsType=" + flag,
  229. })
  230. }
  231. }
  232. };
  233. </script>
  234. <style lang="scss" scoped>
  235. .hide {
  236. display: none !important;
  237. }
  238. .wrap {
  239. font-size: 28rpx;
  240. .content {
  241. width: 600rpx;
  242. margin: 80rpx auto 0;
  243. .title {
  244. text-align: left;
  245. font-size: 60rpx;
  246. font-weight: 500;
  247. margin-bottom: 100rpx;
  248. }
  249. input {
  250. text-align: left;
  251. margin-bottom: 10rpx;
  252. padding-bottom: 20rpx;
  253. border-bottom: 1px solid #ddd;
  254. }
  255. .getCaptcha {
  256. margin: 45rpx auto 130rpx;
  257. background-color: #a8c6f1;
  258. color: $u-tips-color;
  259. border: none;
  260. font-size: 30rpx;
  261. padding: 12rpx 0;
  262. &::after {
  263. border: none;
  264. }
  265. }
  266. }
  267. .buttom {
  268. .hint {
  269. padding: 20rpx 40rpx;
  270. font-size: 20rpx;
  271. color: $u-tips-color;
  272. .link {
  273. color: $u-type-warning;
  274. }
  275. }
  276. }
  277. .captcha {
  278. color: $u-type-warning;
  279. font-size: 30rpx;
  280. margin-top: 40rpx;
  281. text-align: center;
  282. }
  283. }
  284. </style>